aboutsummaryrefslogtreecommitdiff
path: root/templates/blog.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/blog.html')
-rw-r--r--templates/blog.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/templates/blog.html b/templates/blog.html
deleted file mode 100644
index cfdd8c2..0000000
--- a/templates/blog.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{% extends "section.html" %}
-
-{%- block content -%}
-
-{%- for year, posts in section.pages | group_by(attribute="year") -%}
-<section>
-<ul class="post-list">
-{%- for post in posts %}
-<li>
- <a href="{{- post.path|safe -}}">{{- post.title -}}</a>
- <span class="post-date">{{ post.date | date(format="%d %h %Y")}}</span>
-</li>
-{%- endfor %}
-</ul>
-
-</section>
-{%- endfor %}
-
-{%- endblock content -%}