aboutsummaryrefslogtreecommitdiff
path: root/templates/section.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/section.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/section.html')
-rw-r--r--templates/section.html16
1 files changed, 0 insertions, 16 deletions
diff --git a/templates/section.html b/templates/section.html
deleted file mode 100644
index e6b6694..0000000
--- a/templates/section.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{% extends "orphan.html" %}
-
-{% block title %}{{ section.title }} - {{ config.title }}{% endblock title %}
-
-{% block content %}
-<h1>{{ section.title }}</h1>
-<ul>
-{% for post in section.pages %}
-<li>
- <a href="{{ post.permalink }}">{{ post.title }}</a>
- <br>
- <small>{{ post.date | date(format="%d %h %Y") }}</small>
-</li>
-{% endfor %}
-</ul>
-{% endblock content %}