Skip to content
Snippets Groups Projects
Select Git revision
  • ec562adf83e6618e2e2d057789d66cf2fcaa8381
  • master default protected
2 results

archives.html

Blame
  • archives.html 535 B
    {% extends "base.html" %}
    
    {% block title %}{{ SITENAME }} - Archives{% endblock %}
    
    {% block content %}
        <main>
            <section id="list">
                <h2>Archives for {{ SITENAME }}</h2>
                <ul>
                    {% for article in dates %}
                        <li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
                            <time>{{ article.date|strftime('%b %Y') }}</time>
                        </li>
                    {% endfor %}
                </ul>
            </section>
        </main>
    {% endblock %}