A theme for pelican which mimics the look of LaTeX documents
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
327 B

  1. {% extends "base.html" %}
  2. {% block title %}{{ SITENAME }} - Archives{% endblock %}
  3. {% block content %}
  4. <h1>Archives for {{ SITENAME }}</h1>
  5. <dl>
  6. {% for article in dates %}
  7. <dt>{{ article.locale_date }}</dt>
  8. <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
  9. {% endfor %}
  10. </dl>
  11. {% endblock %}