aboutsummaryrefslogtreecommitdiff
path: root/templates/blog.html
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-12-06 17:37:28 -0800
committerFranck Cuny <franck@fcuny.net>2024-12-06 17:37:41 -0800
commit0a350777002ba638bcd44eb23db323b12f7c5d9e (patch)
treef512c7c320e34d301c4f3715f16a098552c2b530 /templates/blog.html
parentsome style changes for the default template (diff)
downloadfcuny.net-0a350777002ba638bcd44eb23db323b12f7c5d9e.tar.gz
get rid of sections
I use tags to organize things.
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 -%}