mirror of
https://github.com/kennethreitz-archive/.com.git
synced 2026-06-20 15:20:57 +00:00
51 lines
1.0 KiB
HTML
51 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %} {{ SITENAME }} Archives{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<hr class="implied">
|
|
<article class="G4 GR GS" id="content">
|
|
<header>
|
|
<h1>Archives for {{ SITENAME }}</h1>
|
|
</header>
|
|
|
|
<div class="formatted">
|
|
<dl>
|
|
{% set current_year = 0 %}
|
|
{% set in_list = False %}
|
|
|
|
{% for article in dates|reverse %}
|
|
|
|
{% if not article.project %}
|
|
|
|
{% if article.date.year != current_year %}
|
|
|
|
{% if in_list %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
<h2>{{ article.date.year }}</h2>
|
|
{% set current_year = article.date.year %}
|
|
{% set in_list = True %}
|
|
<ul>
|
|
|
|
{% endif %}
|
|
|
|
<li>
|
|
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"title="Permalink to {{ article.title}}">{{ article.title }}</a>
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
</dl>
|
|
</div>
|
|
|
|
<hr>
|
|
<p>Follow me on GitHub as <a href="http://github.com/kennethreitz">kennethreitz</a>.</p>
|
|
|
|
|
|
</article>
|
|
|
|
{% endblock %}
|