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/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.* 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 -#} 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