-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemporary.php
38 lines (32 loc) · 1.95 KB
/
temporary.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400">
<link rel="stylesheet" href="<?php echo plugins_url('inc/style.min.css', __FILE__); ?>">
<!--[if lt IE 9]><script src="<?php echo plugins_url('inc/html5shiv.min.js', __FILE__); ?>"></script><![endif]-->
<title><?php bloginfo('name'); ?></title>
<meta name="description" content="<?php bloginfo('description'); ?>">
<link rel="apple-touch-icon" sizes="180x180" href="<?php echo plugins_url('/img/apple-touch-icon.png?v=47r9venQK8', __FILE__); ?>">
<link rel="icon" type="image/png" sizes="32x32" href="<?php echo plugins_url('/img/favicon-32x32.png?v=47r9venQK8', __FILE__); ?>">
<link rel="icon" type="image/png" sizes="16x16" href="<?php echo plugins_url('/img/favicon-16x16.png?v=47r9venQK8', __FILE__); ?>">
<link rel="manifest" href="<?php echo plugins_url('/img/manifest.json?v=47r9venQK8', __FILE__); ?>">
<link rel="mask-icon" href="<?php echo plugins_url('/img/safari-pinned-tab.svg?v=47r9venQK8', __FILE__); ?>" color="#000000">
<link rel="shortcut icon" href="<?php echo plugins_url('/img/favicon.ico?v=47r9venQK8', __FILE__); ?>">
<meta name="msapplication-config" content="<?php echo plugins_url('/img/browserconfig.xml?v=47r9venQK8', __FILE__); ?>">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<main class="main">
<div class="message">
<img class="message__logo" src="<?php echo plugins_url('img/maintenance-wp-logo.png', __FILE__) ; ?>" width="112" height="112" alt="Maintenance WP Logo">
<?php foreach (get_option('maintenance_wp_options') as $key => $value) { ?>
<?php if ($value) { ?>
<p class="message__text"><?php echo sanitize_text_field($value); ?></p>
<?php } ?>
<?php } ?>
</div>
</main>
</body>
</html>