您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
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 %}