<div class="main">
<?php if($this->have()):?>
<?php while($this->next()): ?>
<article>
<p class="title"><a href="<?php $this->permalink() ?>" target="_blank"><?php $this->title() ?></a></p>
<span class="date">发布于:<?php $this->date('y-m-d'); ?></span>
<span class="author">来自<a href="<?php $this->author->permalink(); ?>"><?php $this->author(); ?></a></span>
<div class="category"><?php $this->category(','); ?></div>
<div class="content"><?php $this->content('阅读全文 >>'); ?></div>
</article>
<?php endwhile; ?>
<?php else:?>
<div>暂无文章</div>
<?php endif?>
<?php $this->pageNav('<< 上一页', '下一页 >>'); ?>
</div>
感觉这种格式可自定义化很高啊,即使小白也会用,重组性也挺高的
1
Tink 2017-01-02 04:19:16 +08:00 via iPhone
这不是 php ?
|
3
xfspace 2017-01-02 08:12:19 +08:00 via Android
看 Controller 的实现
|
5
onlyhot 2017-01-02 12:05:40 +08:00 via iPhone
一点都不优雅
|
6
SuperMild 2017-01-02 12:10:12 +08:00
JSX 更优雅啊
|
7
Balthild 2017-01-02 12:23:40 +08:00
|
8
Balthild 2017-01-02 12:26:29 +08:00
补充:这种所谓的「主循环」其实类似于一个 STL 迭代器,如果你搞过 C++,理解起来会容易得多。
|