index.html 666 B

123456789101112131415161718192021222324252627282930313233343536
  1. {% extends "base.html" %}
  2. {% block content_title %}{% endblock %}
  3. {% block content %}
  4. {% for article in articles %}
  5. {% if loop.index == 1 %}
  6. <article>
  7. <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
  8. {{ article.content }}
  9. </article>
  10. <hr />
  11. {% if loop.length > 1 %}
  12. <div>
  13. <h3>Last posts</h3>
  14. <ol class="archive">
  15. {% endif %}
  16. {% elif loop.index < 7 %}
  17. <li>
  18. {% include 'article_link.inc.html' %}
  19. </li>
  20. {% endif %}
  21. {% endfor %}
  22. {% if articles|length > 1 %}
  23. </ol>
  24. </div>
  25. {% endif %}
  26. {% endblock content %}