From 5265b6d5cc6d20a3971baf2c7b32cea443810fc3 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 21 Jan 2026 13:36:19 +0100 Subject: [PATCH 1/3] add: guide on ssh-tresor for encrypting secrets with SSH agent Signed-off-by: Harald Hoyer --- content/2026-01-21-ssh-tresor.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/content/2026-01-21-ssh-tresor.md b/content/2026-01-21-ssh-tresor.md index f89c033..1dcf092 100644 --- a/content/2026-01-21-ssh-tresor.md +++ b/content/2026-01-21-ssh-tresor.md @@ -1,4 +1,11 @@ -# ssh-tresor: Encrypting Secrets with Nothing but Your SSH Agent ++++ +title = "ssh-tresor: Encrypting Secrets with Nothing but Your SSH Agent" +date = 2026-01-21 +[taxonomies] +tags = [ "ssh", "encryption", "rust", "security" ] ++++ + + *DISCLAIMER: This article and most of the code was written with claude code. Use at your own risk.* From ea2745368593e58fb40d5ca7896951bce60fe357 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 21 Jan 2026 13:47:03 +0100 Subject: [PATCH 2/3] update: support multiple feed filenames in config and templates Signed-off-by: Harald Hoyer --- config.toml | 4 ++-- templates/base.html | 7 ++++--- templates/partials/head.html | 6 ++++++ 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/config.toml b/config.toml index 8ee7bf2..21054eb 100644 --- a/config.toml +++ b/config.toml @@ -16,8 +16,8 @@ taxonomies = [ {name = "tags", feed = true, paginate_by=10}, ] -generate_feed = true -feed_filename = "rss.xml" +generate_feeds = true +feed_filenames = ["rss.xml"] [search] # Options specific to elasticlunr search. # index format can be: elasticlunr_json or elasticlunr_javascript diff --git a/templates/base.html b/templates/base.html index 209a5bd..8e07244 100644 --- a/templates/base.html +++ b/templates/base.html @@ -11,10 +11,11 @@ {%- include "partials/head.html" %} - {#- Rss / Atom Feed #} + {#- Rss / Atom Feed - using new feed_filenames config #} {%- block rss %} - {%- if config.generate_feed %} - + {%- if config.generate_feeds %} + {%- set feed_file = config.feed_filenames | first %} + {%- endif %} {%- endblock rss %} diff --git a/templates/partials/head.html b/templates/partials/head.html index b3916d0..c665b9b 100644 --- a/templates/partials/head.html +++ b/templates/partials/head.html @@ -115,4 +115,10 @@ {%- endif %} +{#- Rss / Atom Feed - using new feed_filenames config #} + {%- if config.generate_feeds %} + {%- set feed_file = config.feed_filenames | first %} + + {%- endif %} + {#- End of head partial -#} From 0d2eb146d2c3d65e1a16ef6166cdd8af1bc2ee17 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 21 Jan 2026 13:47:47 +0100 Subject: [PATCH 3/3] Updated abridge theme. --- themes/abridge | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/abridge b/themes/abridge index d45bc26..d52609f 160000 --- a/themes/abridge +++ b/themes/abridge @@ -1 +1 @@ -Subproject commit d45bc26c2250f573a0d83f755831857999fc125f +Subproject commit d52609f456f233ec0845c8a57a1e27583f0813ad