article_list.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <div class="articles">
  2. <ol>
  3. {% for article in articles_page.object_list %}
  4. <li>
  5. <article>
  6. <footer>
  7. <p>
  8. {% if article.category %}
  9. {% if article.category != "misc" %}
  10. in <a href="{{ SITEURL }}/{{ article.category.url }}"><span class="category-tag">{{ article.category }}</span></a>
  11. {% endif %}
  12. {% endif %}
  13. </p>
  14. </footer>
  15. <header>
  16. <a href="{{ SITEURL }}/{{ article.url }}">
  17. <h2>{{ article.title }}</h2>
  18. </a>
  19. </header>
  20. <div class="summary">{{ article.description }} </div>
  21. <div class="tags">
  22. <ul class="tags">
  23. {% for tag in article.tags %}
  24. <li><a href="{{ SITEURL }}/{{ tag.url }}" class="tag">{{ tag.name }}</a></li>
  25. {% endfor %}
  26. </ul>
  27. </div>
  28. <a href="{{ SITEURL }}/{{ article.url }}">
  29. <p class="readmore">Read more...</p>
  30. </a>
  31. </article>
  32. </li>
  33. {% endfor %}
  34. </ol>
  35. {% if articles_page.has_other_pages() %}
  36. {% include 'pagination.html' %}
  37. {% endif %}
  38. </div>