aboutsummaryrefslogtreecommitdiff
path: root/templates/archive.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/archive.html')
-rw-r--r--templates/archive.html20
1 files changed, 0 insertions, 20 deletions
diff --git a/templates/archive.html b/templates/archive.html
deleted file mode 100644
index b06bdb2..0000000
--- a/templates/archive.html
+++ /dev/null
@@ -1,20 +0,0 @@
-{% extends "base.html" %}
-{% block title %}
-Weblog archive - Yaroslav's weblog
-{% endblock %}
-{% block header %}
-<h1>Yaroslav's weblog archive</h1>
-{% endblock %}
-{% block content %}
-{% set section = get_section(path="weblog/_index.md") %}
-<div class="post-container">
- {% for year, posts in section.pages | group_by(attribute="year") %}
- <h3>{{ year }}</h3>
- <ul>
- {% for post in posts %}
- <li><span class="publish-date">{{ post.date | date }}</span> - <a href="{{ post.permalink }}">{{ post.title }}</a></li>
- {% endfor %}
- </ul>
- {% endfor %}
-</div>
-{% endblock %}