diff --git a/content/en/templates/rss.md b/content/en/templates/rss.md index 834cb1277..715bc2a48 100644 --- a/content/en/templates/rss.md +++ b/content/en/templates/rss.md @@ -14,7 +14,6 @@ menu: weight: 150 sections_weight: 150 draft: false -aliases: [/templates/rss/] toc: true --- @@ -100,7 +99,7 @@ In your `header.html` template, you can specify your RSS feed in your `
` .Rel .MediaType.Type .MediaType.Suffix .Permalink $.Site.Title | safeHTML }} + {{ printf `` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ end -}} ``` @@ -108,7 +107,7 @@ If you only want the RSS link, you can query the formats: ```go-html-template {{ with .OutputFormats.Get "rss" -}} - {{ printf `` .Rel .MediaType.Type .MediaType.Suffix .Permalink $.Site.Title | safeHTML }} + {{ printf `` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ end -}} ```