index.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  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. </div><!-- /.entry-content -->
  21. </article></li>
  22. {% if loop.last %}
  23. {% if loop.length > 1 or articles_page.has_other_pages() %}
  24. </ol><!-- /#posts-list -->
  25. {% if articles_page.has_other_pages() %}
  26. {% include 'pagination.html' %}
  27. {% endif %}
  28. </section><!-- /#content -->
  29. {% endif %}
  30. {% endif %}
  31. {% endfor %}
  32. {% endif %}
  33. </div>
  34. {% endblock content %}