forked from pagecho/maupassant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
45 lines (45 loc) · 2.02 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE HTML>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <![endif]-->
<!--[if !IE]> <html class="no-js"> <![endif]-->
<head>
<meta charset="<?php $this->options->charset(); ?>" />
<meta name="viewport" content="width=device-width,user-scalable=no">
<?php if ($this->is('index')): ?>
<title><?php $this->options->title() ?></title>
<?php else: ?>
<title><?php $this->archiveTitle('.', '', ' - '); ?><?php $this->options->title() ?></title>
<?php endif; ?>
<!--[if lt IE 9]>
<link rel="stylesheet" href="<?php $this->options->themeUrl('javascript/html5shiv.js'); ?>">
<![endif]-->
<link rel="stylesheet" href="<?php $this->options->adminUrl('css/normalize.css'); ?>">
<link rel="stylesheet" href="<?php $this->options->themeUrl('style.css'); ?>">
<?php if ($this->options->fastClick == 'able'): ?>
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php endif; ?>
<?php $this->header("generator=&template=&"); ?>
<?php if ($this->options->analyticsCode) $this->options->analyticsCode(); ?>
</head>
<body>
<div class="body404">
<div class="info404">
<header id="header404" class="clearfix">
<div class="site-name404">
<i>404</i>
</div>
</header>
<section>
<div class="title404"><p>我们所度过的每个平凡的日常,<br/>也许就是连续发生的奇迹。</p></div>
<a class="index404" rel="nofollow" href="<?php $this->options->siteUrl(); ?>">回首页看看</a>
</section>
<footer id="footer404">
© <?php echo date('Y'); ?> <?php $this->options->title(); ?>.</span>
</footer>
</div>
</div>
<?php $this->footer(); ?>
</body>
</html>