加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
404.php 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
暮城留风 提交于 2023-03-07 03:55 . 404 页面
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('header.php');
$this->need('inc/components/left-sidebar.php');
?>
<div class="col-lg-8 col-md-12">
<div id="middle">
<?php $this->need('inc/components/middle-header.php'); ?>
<div id="article" class="mb-5">
<div class="row">
<div class="col-12">
<div class="item d-flex mb-5 justify-content-between position-relative">
<div class="content d-flex flex-column justify-content-between position-relative">
<div class="title">
<h2 class="fs-3">页面不存在!</h2>
<h6>请仔细检查您输入的网址是否正确。</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
$this->need('inc/components/right-sidebar.php');
$this->need('footer.php');
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化