From e36f49c7d90bed4b8c2e3edb1225ca1b9720da4d Mon Sep 17 00:00:00 2001 From: Elias Haugsbakk Date: Tue, 21 Jul 2026 22:54:08 +0200 Subject: swap blog and post for article --- .../src/main/resources/templates/articles.html | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 clams-server/src/main/resources/templates/articles.html (limited to 'clams-server/src/main/resources/templates/articles.html') diff --git a/clams-server/src/main/resources/templates/articles.html b/clams-server/src/main/resources/templates/articles.html new file mode 100644 index 0000000..905ed52 --- /dev/null +++ b/clams-server/src/main/resources/templates/articles.html @@ -0,0 +1,31 @@ +{% extends "templates/layout.html" %} + +{% block content %} +
+ ← back +
+

My articles

+

A collection of my writings and thoughts.

+ +
+ + +
+
+ +
+

All Articles

+ {% for group in articles_by_year %} +
+ {{ group.key }} + +
+ {% endfor %} +
+
+{% endblock %} -- cgit v1.2.3