From ce160d833fc3c39847e0ddf746c373c7e9beff2f Mon Sep 17 00:00:00 2001 From: Christian Mund Date: Thu, 27 Nov 2025 12:42:44 +0100 Subject: [PATCH] feat: add rss link to document head for autodiscovery MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In order to not end up with a double slash in the path when constructing the absolute feed url out of `.Site.BaseURL` and `.Site.Params.news.feed`, I've inserted a dot in-between. In a http request, double slashes will be transmitted as-is, potentially causing issues, whereas dot segments are to be resolved by the client beforehand (as per rfc3986). It's the little things… ;-)) --- layouts/_default/baseof.html | 1 + 1 file changed, 1 insertion(+) diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index fc9f678..9da91ce 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -32,6 +32,7 @@ {{ else }} {{ end }} +