sky/404.php

14 lines
495 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'); ?>
<div class="col mt-5 animate__animated animate__fadeIn" 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>
<p>您要找的页面不存在!</p>
<p><a class="btn btn-primary" href=<?php $this->options->siteUrl(); ?>>返回首页</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'); ?>