sky/404.php

14 lines
495 B
PHP

<?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">
<article>
<h1 class="font-weight-bold">404 NOT FOUND.</h1>
<hr>
<p>您要找的页面不存在!</p>
<p><a class="btn btn-primary" href=<?php $this->options->siteUrl(); ?>>返回首页</a> </p>
</article>
</div><!-- end #content-->
<?php $this->need('footer.php'); ?>