Merge pull request #691 from webdesignhero/master

Related Post Plugin Example
This commit is contained in:
Alexis Metaireau 2013-01-23 04:05:42 -08:00
commit c8da208a91

View file

@ -300,7 +300,7 @@ For example::
{% if article.related_posts %}
<ul>
{% for related_post in article.related_posts %}
<li>{{ related_post }}</li>
<li><a href="{{ related_post.url }}">{{ related_post.title }}</a></li>
{% endfor %}
</ul>
{% endif %}