sky/404.php

14 lines
494 B
PHP
Raw Normal View History

2021-07-25 09:12:40 +08:00
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
2021-08-04 12:31:53 +08:00
<div class="col mt-5" id="main" role="main">
2021-08-01 20:07:32 +08:00
<article>
<h1 class="font-weight-bold">404 NOT FOUND.</h1>
2021-08-04 12:31:53 +08:00
<hr>
2021-08-01 20:07:32 +08:00
<p><?php _e('您要找的页面不存在!'); ?></p>
2021-08-04 12:31:53 +08:00
<p><a class="btn btn-primary" href=<?php $this->options->siteUrl(); ?> ><?php _e('返回首页'); ?></a> </p>
2021-08-01 20:07:32 +08:00
</article>
</div><!-- end #content-->
2021-07-25 09:12:40 +08:00
2021-08-01 20:07:32 +08:00
<?php $this->need('footer.php'); ?>