-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy path404.php
35 lines (31 loc) · 1.64 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
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$GLOBALS['page'] = '404';
// 语言初始化
languageInit($this->options->language);
$this->need('components/header.php');
?>
<div class="container main page-404" id="main">
<div class="mt-5" role="alert" aria-labelledby="page-title" aria-describedby="page-info">
<h1 class="text-404 text-center" id="page-title">404</h1>
<h3 class="text-center" id="page-info"><?php echo $GLOBALS['t']['page404']['thePageYouAreLookingForDoesNotExist']; ?></h3>
</div>
<div class="mt-5 row">
<div class="col-xl-6 offset-xl-3 col-lg-6 offset-lg-3 col-md-8 offset-md-2 col-sm-10 offset-sm-1 col-12">
<form action="<?php $this->options->siteUrl(); ?>" method="post" role="search">
<div class="input-group">
<input class="form-control" type="search" placeholder="<?php echo $GLOBALS['t']['header']['search']; ?>" required name="s">
<div class="input-group-append">
<button class="btn btn-primary my-sm-0" type="submit" aria-label="<?php echo $GLOBALS['t']['header']['search']; ?>" title="<?php echo $GLOBALS['t']['header']['search']; ?>" data-toggle="tooltip" data-placement="bottom">
<i class="icon-search"></i>
</button>
</div>
</div>
</form>
</div>
</div>
<div class="text-center mt-3">
<a href="<?php $this->options->siteUrl(); ?>" class="btn" id="back-home-page"><?php echo $GLOBALS['t']['page404']['goBackToHomepage']; ?></a>
</div>
</div>
<?php $this->need('components/footer.php'); ?>