archives.html 419 B

1234567891011121314151617181920
  1. {% extends "base.html" %}
  2. {% block title %}{{ SITENAME }} - Archives{% endblock %}
  3. {% block content %}
  4. <h1>Arquivo de posts</h1>
  5. <table class="table">
  6. <tbody>
  7. {% for article in dates %}
  8. <tr>
  9. <td>{{ article.date.strftime("%d %b %Y") }}</td>
  10. <td><a href='{{ SITEURL }}/{{ article.url }}'>{{ article.title }}</a></td>
  11. </tr>
  12. {% endfor %}
  13. </tbody>
  14. </table>
  15. {% endblock %}