mirror of
https://github.com/jkjoy/typecho-theme-farallon.git
synced 2026-06-27 19:14:27 +00:00
482e9a1e93
修复了一个<div>未闭合的bug 优化分页和加载更多逻辑
18 lines
593 B
PHP
18 lines
593 B
PHP
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
|
|
<?php $this->need('header.php'); ?>
|
|
<section class="site--main">
|
|
<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>
|
|
<!-- 判断如果禁止评论则不显示评论的div -->
|
|
<?php if ($this->allow('comment')): ?>
|
|
<?php $this->need('./module/comments.php'); ?>
|
|
<?php endif; ?>
|
|
</article>
|
|
</section>
|
|
<?php $this->need('footer.php'); ?>
|
|
|