From a767708fba63ac8146ea10291655e682fa221156 Mon Sep 17 00:00:00 2001 From: Sam Hadow Date: Wed, 17 Dec 2025 21:44:42 +0100 Subject: [PATCH] post tags and archive --- ...02-nextcloud-collation-version-mismatch.md | 1 + archive.html | 32 +++++++++++++++++++ blog.html | 11 ++++++- 3 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 archive.html diff --git a/_posts/2025-11-02-nextcloud-collation-version-mismatch.md b/_posts/2025-11-02-nextcloud-collation-version-mismatch.md index 8a56ff2..1ea1080 100644 --- a/_posts/2025-11-02-nextcloud-collation-version-mismatch.md +++ b/_posts/2025-11-02-nextcloud-collation-version-mismatch.md @@ -1,6 +1,7 @@ --- layout: post author: Sam Hadow +tags: nextcloud --- On my server I self-host nextcloud with a PostgreSQL database and this container image *docker.io/library/nextcloud:fpm-alpine*. diff --git a/archive.html b/archive.html new file mode 100644 index 0000000..087a4f4 --- /dev/null +++ b/archive.html @@ -0,0 +1,32 @@ +--- +layout: default +title: "Post Archive" +permalink: /archive.html +--- +

All my posts organized by their tags

+ +
+{% for tag in site.tags %} + {% assign tag_name = tag | first %} + {% assign tag_name_pretty = tag_name | replace: "_", " " | capitalize %} +
+
+

In #{{ tag_name }}:

+ +
    + {% for post in site.tags[tag_name] %} +
  • + {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} + + + {{ post.title | escape }} + + - {{ post.date | date: date_format }} +
  • + {% endfor %} +
+
+{% endfor %} +
+ + diff --git a/blog.html b/blog.html index 77258a3..c699fd9 100644 --- a/blog.html +++ b/blog.html @@ -7,12 +7,21 @@ title: Blog