7 {% for post in site.posts limit:
10 offset:
0 %}
<!-- 显示最新的10条日志 -->
11 <h3><a href=
"{{ post.url }}">{{ post.title }}
</a> <small>{{ post.date | date:
"%Y-%m-%d" }}
</small></h3>
15 <p>{{ post.description }}
</p>
18 {% if post.categories %}
20 {% for category in post.categories %}
21 <a href="#">{{ category }}</a>
29 {% for tag in post.tags limit:10 offset:0 %}
30 <a href="#">{{ tag }}</a>