a.for 标签,用来循环显示列表各项的值,比如要显示wordpress文章列表:
{% for post in posts %}
<div>
<h2><a href=”{{ post.guid }}”>{{ post.title }}</a></h2>
{{ post.content }}
</div>
{% endfor %}
a.for 标签,用来循环显示列表各项的值,比如要显示wordpress文章列表:
{% for post in posts %}
<div>
<h2><a href=”{{ post.guid }}”>{{ post.title }}</a></h2>
{{ post.content }}
</div>
{% endfor %}
相关文章: