123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {% extends 'base.html' %}
- {% block title %}
- All Posts · {{ super() }}
- {% endblock title %}
- {% block head_description %}
- Full archives of {{ SITENAME|striptags }} blog.
- {% endblock head_description %}
- {% block content %}
- <div class="row-fluid">
- <header class="page-header span10 offset2">
- <h1><a href="{{ SITEURL }}/archives.html">All Posts</a></h1>
- </header>
- </div>
- <div class="row-fluid">
- <div class="span10 offset2">
- <div class="blog-archives">
- {% set last_year = 0 %}
- {% for article in dates %}
- {% set year = article.date.strftime('%Y') %}
- {%if last_year != year %}
- <h2>{{ year }}</h2>
- {% set last_year = year %}
- {% endif %}
- <article>
- <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }} {%if article.subtitle %} <small> {{ article.subtitle }} </small> {% endif %} </a></h1>
- {% set day = article.date.strftime('%d')|int %}
- <time pubdate="pubdate" datetime="{{ article.date.isoformat() }}">{{ article.date.strftime('%b') }} {{ day }}</time>
- <footer>posted in
- <a href="{{ SITEURL }}/categories.html#{{ article.category.slug }}-ref">{{ article.category }}</a>
- </footer>
- </article>
- {% endfor %}
- </div>
- </div>
- </div>
- {% endblock content %}
|