blog.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {% extends "base.html" %}
  2. {% block content_title %}{% endblock %}
  3. {% block content %}
  4. <div class="grid_16">
  5. {% if articles %}
  6. {% for article in articles_page.object_list %}
  7. {% if loop.length > 0 %}
  8. {% if loop.first %}
  9. <section>
  10. <ol id="posts-list" class="hfeed" start="{{ articles_paginator.per_page -1 }}">
  11. {% endif %}
  12. <article>
  13. <header>
  14. <h1 class="entry-title">
  15. <a href="/{{ article.url }}"
  16. rel="bookmark" title="Permalink to {{ article.title|striptags }}">
  17. {{ article.title }}
  18. </a>
  19. </h1>
  20. </header>
  21. <div class="entry-content">
  22. {% include 'article_infos.html' %}
  23. {{ article.content }}
  24. </div><!-- /.entry-content -->
  25. <hr/>
  26. </article>
  27. {% if loop.last %}
  28. </ol><!-- /#posts-list -->
  29. {% if loop.last and (articles_page.has_previous()
  30. or not articles_page.has_previous() and loop.length > 1) %}
  31. {% include 'pagination.html' %}
  32. {% endif %}
  33. </section><!-- /#content -->
  34. {% endif %}
  35. {% endif %}
  36. {% endfor %}
  37. {% else %}
  38. <section>
  39. <h2>Pages</h2>
  40. {% for page in PAGES %}
  41. <li><a href="/{{ page.url }}">{{ page.title }}</a></li>
  42. {% endfor %}
  43. </section>
  44. {% endif %}
  45. </div>
  46. {% endblock content %}