index.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {% extends "base.html" %}
  2. {% block content_title %}{% endblock %}
  3. {% block content %}
  4. {% if articles %}
  5. {% for article in articles_page.object_list %}
  6. {# First item #}
  7. {% if loop.first and not articles_page.has_previous() %}
  8. <aside id="featured">
  9. <article>
  10. <h1 class="entry-title"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
  11. {% include 'article_infos.html' %}{{ article.content }}{% include 'comments.html' %}
  12. </article>
  13. </aside><!-- /#featured -->
  14. {% if loop.length > 1 %}
  15. <section class="m3y">
  16. <h1>Autres articles</h1>
  17. <hr />
  18. <ol id="posts-list" class="hfeed">
  19. {% endif %}
  20. {# other items #}
  21. {% else %}
  22. {% if loop.first %}
  23. <section id="content">
  24. <ol id="posts-list" class="hfeed" start="{{ articles_paginator.per_page -1 }}">
  25. {% endif %}
  26. <li><article class="hentry">
  27. <header>
  28. <h1>
  29. <a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">
  30. {{ article.title }}
  31. </a>
  32. </h1>
  33. </header>
  34. <div class="entry-content">
  35. {% include 'article_infos.html' %}
  36. {{ article.summary }}
  37. <a class="readmore" href="{{ SITEURL }}/{{ article.url }}">read more</a>
  38. {% include 'comments.html' %}
  39. </div><!-- /.entry-content -->
  40. </article></li>
  41. {% endif %}
  42. {% if loop.last %}
  43. {% if loop.length > 1 or articles_page.has_other_pages() %}
  44. </ol><!-- /#posts-list -->
  45. {% if articles_page.has_other_pages() %}
  46. {% include 'pagination.html' %}
  47. {% endif %}
  48. </section><!-- /#content -->
  49. {% endif %}
  50. {% endif %}
  51. {% endfor %}
  52. {% else %}
  53. <section id="content">
  54. <h2>Pages</h2>
  55. {% for page in PAGES %}
  56. <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
  57. {% endfor %}
  58. </section>
  59. {% endif %}
  60. {% endblock content %}