archives.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="page-title">
  4. <h1>archives</h1>
  5. </div>
  6. <div class="articles">
  7. <ol>
  8. {% for article in dates %}
  9. <li>
  10. <article>
  11. <footer>
  12. <p>
  13. {% if article.category %}
  14. {% if article.category != "misc" %}
  15. in <a href="{{ SITEURL }}/{{ article.category.url }}"><span class="category-tag">{{ article.category }}</span></a>
  16. {% endif %}
  17. {% endif %}
  18. </p>
  19. </footer>
  20. <header>
  21. <a href="{{ SITEURL }}/{{ article.url }}">
  22. <h2>{{ article.title }}</h2>
  23. </a>
  24. </header>
  25. <div class="summary">{{ article.summary }} </div>
  26. <div class="tags">
  27. <ul class="tags">
  28. {% for tag in article.tags %}
  29. <li><a href="{{ SITEURL }}/{{ tag.url }}" class="tag">{{ tag.name }}</a></li>
  30. {% endfor %}
  31. </ul>
  32. </div>
  33. <a href="{{ SITEURL }}/{{ article.url }}">
  34. <p class="readmore">Read more...</p>
  35. </a>
  36. </article>
  37. </li>
  38. {% endfor %}
  39. </ol>
  40. </div>
  41. {% endblock content %}