A theme for pelican which mimics the look of LaTeX documents
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.

15 lines
382 B

  1. {% extends "base.html" %}
  2. {% block title %}{{ SITENAME }} - {{ period | reverse | join(' ') }} archives{% endblock %}
  3. {% block content %}
  4. <h1>Archives for {{ period | reverse | join(' ') }}</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 %}