forked from eiko-g/Croquis-for-WordPress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
31 lines (25 loc) · 982 Bytes
/
404.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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="Cache-Control" content="no-siteapp" /><!-- 禁止百度吃屎的移动版转码 -->
<!--[if IE]>
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<![endif]-->
<title>404 Error</title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<meta name = "viewport" content ="initial-scale=1.0,maximum-scale=1,user-scalable=no,minimal-ui">
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>"/>
<meta name="format-detection" content="telephone=no" /> <!-- 禁止数字自动识别为电话号码 -->
</head>
<body>
<header class="page-404-header">
<h1>404 Error</h1>
<h2>Page Not Found</h2>
</header>
<section class="page-404-section">
<p><a href="<?php bloginfo('url'); ?>" class="back">Back to homepage</a></p>
</section>
</body>
</html>