From a0252219c55cf9775582e843083424f123d4ac16 Mon Sep 17 00:00:00 2001 From: francoposa Date: Sat, 27 Jul 2024 15:39:07 -0700 Subject: header partial: replace deprecated .Path access with lower .Name --- layouts/partials/header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'layouts') diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 8933883..446fb19 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -11,7 +11,7 @@ {{ with site.Params.menu }} {{ range . }} -

+

/{{.name }} -- cgit v1.2.3 From 6a2bf3a1cb10a68173e2ad6cb6abcf5d7ac657d3 Mon Sep 17 00:00:00 2001 From: Jesse Rusak Date: Mon, 12 Aug 2024 17:13:32 -0400 Subject: Add RSS feed link --- layouts/partials/head.html | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'layouts') diff --git a/layouts/partials/head.html b/layouts/partials/head.html index bf00a74..508b391 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -1,6 +1,10 @@ +{{ with .OutputFormats.Get "rss" -}} + {{ printf `` .Rel .MediaType.Type .Permalink site.Title | safeHTML }} +{{ end }} + {{- if .IsHome -}} {{- else -}} -- cgit v1.2.3