index.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {% extends "base.html" %}
  2. {% block content_title %}{% endblock %}
  3. {% block content %}
  4. <div class="news">
  5. {% if articles %}
  6. {% for article in articles_page.object_list %}
  7. {% if loop.first %}
  8. <section id="content" class="body">
  9. <ol id="posts-list" class="hfeed" start="{{ articles_paginator.per_page -1 }}">
  10. {% endif %}
  11. <li><article class="hentry">
  12. <header>
  13. <h1><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
  14. title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h1>
  15. </header>
  16. <div class="entry-content">
  17. {% include 'article_infos.html' %}
  18. {{ article.summary }}
  19. <a class="readmore" href="{{ SITEURL }}/{{ article.url }}">read more</a>
  20. {% include 'comments.html' %}
  21. </div><!-- /.entry-content -->
  22. </article></li>
  23. {% if loop.last %}
  24. {% if loop.length > 1 or articles_page.has_other_pages() %}
  25. </ol><!-- /#posts-list -->
  26. {% if articles_page.has_other_pages() %}
  27. {% include 'pagination.html' %}
  28. {% endif %}
  29. </section><!-- /#content -->
  30. {% endif %}
  31. {% endif %}
  32. {% endfor %}
  33. {% endif %}
  34. </div>
  35. {% endblock content %}