加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
archive.php 414 Bytes
一键复制 编辑 原始数据 按行查看 历史
初夏阳光 提交于 2020-04-11 21:41 . Test Commit from WSL VSCode
<?php
/**
* archives
*
* @author 熊猫小A
* @version 2019-01-17 0.1
*
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
if(!Utils::isPjax()){
$this->need('includes/head.php');
$this->need('includes/header.php');
}
if($this->have()){
$this->need('includes/archives.php');
}else{
$this->need('includes/404.php');
}
if(!Utils::isPjax()){
$this->need('includes/footer.php');
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化