Files
typecho-theme-farallon/index.php
T
浪子 5c91195745 0.7.0
重新整理了一下目录,更改了部分内容的实现方式
2025-03-17 08:13:35 +08:00

17 lines
409 B
PHP

<?php
/**
* 一款单栏主题. 移植自HUGO主题 Farallon 原作者 bigfa
* @package Farallon
* @author 老孙
* @version 0.7.0
* @link https://www.imsun.org
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('module/header.php');
?>
<main class="site--main">
<div class="articleList">
<?php $this->need('module/postlist.php'); ?>
</div>
</main>
<?php $this->need('module/footer.php'); ?>