farallon/page.php

15 lines
462 B
PHP
Raw Normal View History

2024-05-17 15:47:27 +08:00
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
2024-05-17 16:02:08 +08:00
<section class="site--main">
2024-05-17 15:47:27 +08:00
<header class="archive--header">
<h1 class="post--single__title"><?php $this->title() ?></h1>
</header>
<article class="post--single">
<div class="graph u-marginBottom30">
<?php $this->content(); ?>
</div>
</article>
2024-05-17 16:02:08 +08:00
<?php $this->need('comments.php'); ?>
</section>
2024-05-17 15:47:27 +08:00
<?php $this->need('footer.php'); ?>