series.html 799 B

1234567891011121314151617181920212223
  1. {% if article.series %}
  2. <section class="well" id="related-posts">
  3. {% set text = SERIES_TEXT|default('Part %(index)s of the %(name)s series') %}
  4. <h4>{{ text|format(index=article.series.index, name=article.series.name) }}</h4>
  5. {% if article.series.all_previous %}
  6. <h5>Previous articles</h5>
  7. <ul>
  8. {% for article in article.series.all_previous %}
  9. <li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
  10. {% endfor %}
  11. </ul>
  12. {% endif %}
  13. {% if article.series.all_next %}
  14. <h5>Next articles</h5>
  15. <ul>
  16. {% for article in article.series.all_next %}
  17. <li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
  18. {% endfor %}
  19. </ul>
  20. {% endif %}
  21. </section>
  22. {% endif %}