You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
333B

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h3>Archives</h3>
  4. <table class="table-archive">
  5. <tbody>
  6. {% for article in dates %}
  7. <tr>
  8. <td>{{ article.locale_date }}</td>
  9. <td><a href='{{ article.url }}'>{{ article.title }}</a></td>
  10. </tr>
  11. {% endfor %}
  12. </tbody>
  13. </table>
  14. {% endblock %}