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

19 行
457 B

  1. {% extends "base.html" %}
  2. {% block title %}
  3. Archives for {{ period | reverse | join(' ') }} {{ super() }}
  4. {% endblock %}
  5. {% block page_header %}
  6. Archives for {{ period | reverse | join(' ') }}
  7. {% endblock %}
  8. {% block content %}
  9. <dl class="dl-horizontal">
  10. {% for article in dates %}
  11. <dt>{{ article.locale_date }}</dt>
  12. <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
  13. {% endfor %}
  14. </dl>
  15. {% endblock %}