2024-05-17 15:47:27 +08:00
|
|
|
<?php
|
|
|
|
/**
|
2024-06-05 14:19:34 +08:00
|
|
|
* 移植自HUGO主题 farallon 原作者 bigfa
|
2024-05-17 16:02:08 +08:00
|
|
|
* @package farallon
|
2024-05-17 16:21:54 +08:00
|
|
|
* @author 老孙
|
2024-07-06 09:09:42 +08:00
|
|
|
* @version 0.5.6
|
2024-05-17 16:02:08 +08:00
|
|
|
* @link https://imsun.org
|
2024-05-17 15:47:27 +08:00
|
|
|
*/
|
|
|
|
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
|
|
|
|
$this->need('header.php');
|
|
|
|
?>
|
|
|
|
<main class="site--main">
|
|
|
|
<div class="articleList">
|
|
|
|
<?php $this->need('postlist.php'); ?>
|
|
|
|
</div>
|
|
|
|
</main>
|
2024-07-01 18:34:20 +08:00
|
|
|
<?php $this->need('footer.php'); ?>
|