Compare commits
No commits in common. "0d2eb146d2c3d65e1a16ef6166cdd8af1bc2ee17" and "d779a54e63195d4515a5505d7abc4314deb4aeb2" have entirely different histories.
0d2eb146d2
...
d779a54e63
5 changed files with 7 additions and 21 deletions
|
|
@ -16,8 +16,8 @@ taxonomies = [
|
||||||
{name = "tags", feed = true, paginate_by=10},
|
{name = "tags", feed = true, paginate_by=10},
|
||||||
]
|
]
|
||||||
|
|
||||||
generate_feeds = true
|
generate_feed = true
|
||||||
feed_filenames = ["rss.xml"]
|
feed_filename = "rss.xml"
|
||||||
|
|
||||||
[search] # Options specific to elasticlunr search.
|
[search] # Options specific to elasticlunr search.
|
||||||
# index format can be: elasticlunr_json or elasticlunr_javascript
|
# index format can be: elasticlunr_json or elasticlunr_javascript
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,4 @@
|
||||||
+++
|
# 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" ]
|
|
||||||
+++
|
|
||||||
|
|
||||||
<!-- more -->
|
|
||||||
|
|
||||||
*DISCLAIMER: This article and most of the code was written with claude code. Use at your own risk.*
|
*DISCLAIMER: This article and most of the code was written with claude code. Use at your own risk.*
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,11 +11,10 @@
|
||||||
<head>
|
<head>
|
||||||
{%- include "partials/head.html" %}
|
{%- include "partials/head.html" %}
|
||||||
|
|
||||||
{#- Rss / Atom Feed - using new feed_filenames config #}
|
{#- Rss / Atom Feed #}
|
||||||
{%- block rss %}
|
{%- block rss %}
|
||||||
{%- if config.generate_feeds %}
|
{%- if config.generate_feed %}
|
||||||
{%- set feed_file = config.feed_filenames | first %}
|
<link rel="alternate" type="{% if config.feed_filename is containing('atom') %}application/atom+xml{% else %}application/rss+xml{% endif %}" title="{{ config.title }} Atom/RSS Feed" href="{{ get_url(path=config.feed_filename, trailing_slash=false, lang=lang) | safe }}" />
|
||||||
<link rel="alternate" type="{% if feed_file is containing('atom') %}application/atom+xml{% else %}application/rss+xml{% endif %}" title="{{ config.title }} Atom/RSS Feed" href="{{ get_url(path=feed_file, trailing_slash=false, lang=lang) | safe }}" />
|
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
{%- endblock rss %}
|
{%- endblock rss %}
|
||||||
|
|
|
||||||
|
|
@ -115,10 +115,4 @@
|
||||||
|
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
{#- Rss / Atom Feed - using new feed_filenames config #}
|
|
||||||
{%- if config.generate_feeds %}
|
|
||||||
{%- set feed_file = config.feed_filenames | first %}
|
|
||||||
<link rel="alternate" type="{% if feed_file is containing('atom') %}application/atom+xml{% else %}application/rss+xml{% endif %}" title="{{ config.title }} Atom/RSS Feed" href="{{ get_url(path=feed_file, trailing_slash=false, lang=lang) | safe }}" />
|
|
||||||
{%- endif %}
|
|
||||||
|
|
||||||
{#- End of head partial -#}
|
{#- End of head partial -#}
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit d52609f456f233ec0845c8a57a1e27583f0813ad
|
Subproject commit d45bc26c2250f573a0d83f755831857999fc125f
|
||||||
Loading…
Add table
Add a link
Reference in a new issue