diff --git a/themes/bootstrap3/templates/archives.html b/themes/bootstrap3/templates/archives.html new file mode 100644 index 0000000000000000000000000000000000000000..5e2bdb412b367c60c3485e3ec5fef71342b045da --- /dev/null +++ b/themes/bootstrap3/templates/archives.html @@ -0,0 +1,24 @@ +{% extends "base.html" %} +{% block title %}{{ ('Archives') }} - {{ SITENAME }}{% endblock %} +{% block breadcrumbs %} + {% if DISPLAY_BREADCRUMBS %} + + {% endif %} +{% endblock %} + +{% block content %} +
+

{{ ('Archives for') }} {{ SITENAME }}

+
+ {% for article in dates %} +

+ + {{ article.title }}{% if article.subtitle %} - {{ article.subtitle }}{% endif %} +

+ {% endfor %} +
+
+{% endblock %}