Farallon/index.php

17 lines
388 B
PHP
Raw Permalink Normal View History

2024-05-17 07:47:27 +00:00
<?php
/**
2024-10-08 09:01:31 +00:00
* 一款单栏主题. 移植自HUGO主题 Farallon 原作者 bigfa
2024-07-23 04:44:11 +00:00
* @package Farallon
2024-05-17 08:21:54 +00:00
* @author 老孙
2024-09-28 15:51:56 +00:00
* @version 0.6.1
2024-07-23 04:44:11 +00:00
* @link https://www.imsun.org
2024-05-17 07:47:27 +00: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-10-08 09:01:31 +00:00
<?php $this->need('footer.php'); ?>