forked from weipxiu/Art_Blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-reminder.php
85 lines (75 loc) · 2.11 KB
/
page-reminder.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
/*
Template Name: 升级浏览器
*/
?>
<!doctype html>
<html>
<head>
<title>温馨提示:您的浏览器需要更新才能访问哦^_^</title>
<?php wp_head(); ?>
<style>
* {
margin: 0;
padding: 0;
font-size: 20px;
}
body {
text-align: center;
padding-top: 30px;
}
img {
border: none;
}
h2,
h3,
h4 {
color: #666;
margin: 26px;
font-size: 24px;
}
strong {
font-weight: normal;
padding-bottom: 2px;
color: #930;
}
p {
padding: 50px 0;
letter-spacing: 20px;
}
h4 {
font-weight: normal;
}
a {
color: #930;
text-decoration: none;
border-bottom: 1px dotted #930;
}
</style>
</head>
<body>
<h2>温馨提示:<br /><br /><strong>您的浏览器版本实在过低,需要更新才能访问哦 ^_^</strong></h2>
<h3>建议使用
<strong><a href="https://www.google.cn/chrome/" target="_blank">Chrome</a></strong>、<strong><a
href="https://www.firefox.com/" target="_blank">firefox</a></strong>、<strong><a
href="https://www.apple.com/safari" target="_blank">Safari</a></strong>、<strong><a
href="https://www.opera.com/zh-cn" target="_blank">opera</a></strong>
标准浏览器访问~
</h3>
<h3>
如果坚持使用Internet Explorer浏览器,那么请务必升级到最新版<a
href="https://support.microsoft.com/zh-cn/help/17621/internet-explorer-downloads">Explorer 11</a>
</h3>
<p>
<a href="https://www.google.cn/chrome/" target="_blank"><img alt="chrome"
src="<?php echo esc_url(get_template_directory_uri()); ?>/images/chrome.png"></a>
<a href="https://www.firefox.com/" target="_blank"><img alt="safari"
src="<?php echo esc_url(get_template_directory_uri()); ?>/images/firefox.png"></a>
<a href="https://www.apple.com/safari" target="_blank"><img alt="safari"
src="<?php echo esc_url(get_template_directory_uri()); ?>/images/safari.png"></a>
<a href="https://www.opera.com/zh-cn" target="_blank"><img alt="safari"
src="<?php echo esc_url(get_template_directory_uri()); ?>/images/opera.png"></a>
</p>
<h4>Copyright © 2016-2020 <a href="/">WEIPXIU.COM</a> · 版权所有</h4>
</body>
</html>