Final
追求极致简约简单。未引用任何js
,CSS
压缩后页面可以到2K
以内。无评论功能。
演示
下载
说明文档
- 在文章详情页,点击文章标题可以返回主页
- 文章最下方为
tags
默认没有导航,需要导航可使用以下代码
<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>
评论区