diff --git a/i18n/de.yaml b/i18n/de.yaml index 68143ba..f824f31 100644 --- a/i18n/de.yaml +++ b/i18n/de.yaml @@ -12,6 +12,9 @@ - id: meta_lastmod translation: Zuletzt geändert +- id: meta_reply_to + translation: Antwort auf + # Post nav - id: post_nav_prev translation: Zurück diff --git a/i18n/en.yaml b/i18n/en.yaml index 66fb973..3f54336 100644 --- a/i18n/en.yaml +++ b/i18n/en.yaml @@ -10,7 +10,10 @@ # Post meta - id: meta_lastmod - translation: Last Modified + translation: Last modified + +- id: meta_reply_to + translation: Reply to # Post nav - id: post_nav_prev diff --git a/layouts/partials/post_meta.html b/layouts/partials/post_meta.html index caedde0..bb80b4c 100644 --- a/layouts/partials/post_meta.html +++ b/layouts/partials/post_meta.html @@ -2,9 +2,16 @@ {{- if not .Date.IsZero }}
-{{- if ne .Date .Lastmod }} - +
{{- end }} +{{- if ne .Date .Lastmod }} +
+
{{ end -}} +{{ with .Param "indieweb.reply" }} +
+ {{ T "meta_reply_to" }}: {{ .title }} +
+{{ end }} {{ end -}} \ No newline at end of file