1234567891011121314151617181920212223242526272829 |
- {% extends "base.html" %}
- {% block content_title %}{% endblock %}
- {% block content %}
- {% if articles %}
- {% for article in articles_page.object_list %}
- <div class='article'>
- <div class="content-title">
- <a href="{{ SITEURL }}/{{ article.url }}"><h1>{{ article.title }}</h1></a>
- {% include "metadata.html" %}
- </div>
-
- <div>{{ article.content }}</div>
- <hr />
- </div>
-
- {% if loop.length == 1 %}
- {% include 'pagination.html' %}
- {% endif %}
- {% endfor %} {# For article #}
- {% endif %} {# If articles #}
- {% endblock content %}
|