【发布时间】:2014-07-11 00:37:14
【问题描述】:
我想将“类别”部分放在“最近的帖子”部分上方,但不会搞砸,但我遇到了麻烦。有什么建议吗?
<div align="center">
<h3>Recent Articles</h3> </div>
<ul id="posts">
{% for article in blog.articles %}
<li><a href="{{article.url}}">{{ article.title }}</a>
<p>{{ article.published_at | date: "%b %d %Y" }}</p>
{{ article.excerpt_or_content }}
<p>{{ article.content | strip_html | truncate: 100 }}</p>
</li>
{% endfor %}
<div align="center">
<h3 style="margin: 20px 0">Categories</h3> </div>
{% for tag in blog.all_tags %}
<li class="tags">
<a href="{{ shop.url}}/blogs/{{ blog.handle }}/tagged/{{ tag | handleize }}">{{ tag }}</a>
</li>
{% endfor %}
</ul>
</div>
【问题讨论】: