home.html 906 B

123456789101112131415161718192021222324252627282930313233343536
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div id="content-home">
  4. {% import 'translations.html' as translations with context %}
  5. {{ translations.translations_for(page) }}
  6. {{ page.content }}
  7. {% if articles %}
  8. <ol id="posts-list" class="hfeed">
  9. {% for article in articles[:3] %}
  10. <li>
  11. <article class="hentry">
  12. <header>
  13. <h2>
  14. <a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">
  15. {{ article.title }}
  16. </a>
  17. </h2>
  18. </header>
  19. <div class="entry-content">
  20. {% include 'article_infos.html' %}
  21. {{ article.summary }}
  22. <a class="readmore" href="{{ SITEURL }}/{{ article.url }}">read more</a>
  23. {% include 'comments.html' %}
  24. </div><!-- /.entry-content -->
  25. </article>
  26. </li>
  27. {% endfor %}
  28. </ol>
  29. {% endif %}
  30. </div>
  31. {% endblock %}