archives.html 608 B

123456789101112131415161718192021222324252627282930313233
  1. {% extends "/html/base.html" %}
  2. {%block subtitle %}: Archives{% endblock %}
  3. {% block content %}
  4. <div id="posts">
  5. <a href="/">Home</a>
  6. <div id="page-header">
  7. <h2>Archives</h2>
  8. </div>
  9. {% for group in groups %}
  10. <h4>{{group.group}}</h4>
  11. <ul>
  12. {% for post in group.posts %}
  13. <li>
  14. {{post.date|date:"MMM dd"}} - <a href="{{post.uri}}">{{post.title}}</a>
  15. </li>
  16. {% endfor %}
  17. </ul>
  18. {% endfor %}
  19. <p>Subscribe via rss:</p>
  20. <ul>
  21. <li><a href="{{rss-uri}}">Main feed</a></li>
  22. </ul>
  23. </div>
  24. {% endblock %}