summaryrefslogtreecommitdiffstats
path: root/themes/lv2/templates/archives.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/lv2/templates/archives.html')
-rw-r--r--themes/lv2/templates/archives.html31
1 files changed, 10 insertions, 21 deletions
diff --git a/themes/lv2/templates/archives.html b/themes/lv2/templates/archives.html
index 8875de0..9386c3e 100644
--- a/themes/lv2/templates/archives.html
+++ b/themes/lv2/templates/archives.html
@@ -1,24 +1,13 @@
{% extends "base.html" %}
-{% block title %}Archives - {{ SITENAME }}{% endblock %}
-{% block breadcrumbs %}
- {% if DISPLAY_BREADCRUMBS %}
- <ol class="breadcrumb">
- <li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
- <li class="active">Archives</li>
- </ol>
- {% endif %}
-{% endblock %}
-
{% block content %}
- <section id="content">
- <h1>Archives for {{ SITENAME }}</h1>
- <div id="archives">
- {% for article in dates %}
- <p>
- <span class="categories-timestamp"><time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time></span>
- <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}{% if article.subtitle %} - {{ article.subtitle }}{% endif %}</a>
- </p>
- {% endfor %}
- </div>
- </section>
+<section id="content" class="body">
+ <h1>Archives for {{ SITENAME }}</h1>
+
+ <dl>
+ {% for article in dates %}
+ <dt>{{ article.locale_date }}</dt>
+ <dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
+ {% endfor %}
+ </dl>
+</section>
{% endblock %}