related-posts.html 341 B

1234567891011
  1. {% if article.related_posts %}
  2. <section class="well" id="related-posts">
  3. <h4>{{ RELATED_POSTS_TEXT|default('Related Posts:') }}</h4>
  4. <ul>
  5. {% for related_post in article.related_posts %}
  6. <li><a href="{{ SITEURL }}/{{ related_post.url }}">{{ related_post.title }}</a></li>
  7. {% endfor %}
  8. </ul>
  9. </section>
  10. {% endif %}