在线预览: https://final.linkpark.site/
开源地址:https://github.com/hoytzhang/typecho-theme-final
----------------------------------------------
协议:wtfpl
说明文档:
1. 在文章详情页,点击文章标题可以返回主页
2. 文章最下方为tags
3. 默认没有导航,需要导航可使用以下代码
代码: 全选
<nav>
<p>
<a<?php if ($this->is('index')): ?> <?php endif; ?>
href="<?php $this->options->siteUrl(); ?>"><?php _e('首页'); ?></a>
<?php \Widget\Contents\Page\Rows::alloc()->to($pages); ?>
<?php while ($pages->next()): ?>
<a<?php if ($this->is('page', $pages->slug)): ?> <?php endif; ?>
href="<?php $pages->permalink(); ?>"
title="<?php $pages->title(); ?>"><?php $pages->title(); ?></a>
<?php endwhile; ?>
</p>
</nav>