index.html 630 B

1234567891011121314151617181920212223242526272829
  1. {% extends "base.html" %}
  2. {% block content_title %}{% endblock %}
  3. {% block content %}
  4. {% if articles %}
  5. {% for article in articles_page.object_list %}
  6. <div class='article'>
  7. <div class="content-title">
  8. <a href="{{ SITEURL }}/{{ article.url }}"><h1>{{ article.title }}</h1></a>
  9. {% include "metadata.html" %}
  10. </div>
  11. <div>{{ article.content }}</div>
  12. <hr />
  13. </div>
  14. {% if loop.length == 1 %}
  15. {% include 'pagination.html' %}
  16. {% endif %}
  17. {% endfor %} {# For article #}
  18. {% endif %} {# If articles #}
  19. {% endblock content %}