about summary refs log tree commit diff
path: root/templates/section.html
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-09-22 12:58:12 -0700
committerFranck Cuny <franck@fcuny.net>2024-09-22 12:58:12 -0700
commit6a20b0c18e5093219ae9393f3864354c46bb05cf (patch)
tree4cad4c335d7681a4d64876ef56c51cad4ce74783 /templates/section.html
parentrestructure a bit the index (diff)
downloadfcuny.net-6a20b0c18e5093219ae9393f3864354c46bb05cf.tar.gz
add a menu and improve readability
Add a menu with links to some sections. Tweak the CSS to make the
website a bit more readable.
Diffstat (limited to '')
-rw-r--r--templates/section.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/section.html b/templates/section.html
index 7130c84..e6b6694 100644
--- a/templates/section.html
+++ b/templates/section.html
@@ -6,11 +6,11 @@
 <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>
+<li>
+  <a href="{{ post.permalink }}">{{ post.title }}</a>
+  <br>
+  <small>{{ post.date | date(format="%d %h %Y") }}</small>
+</li>
 {% endfor %}
 </ul>
 {% endblock content %}