1
0
Fork 0

Immer den Feed /blog/index.xml im Head verlinken

This commit is contained in:
Malte Bublitz 2023-09-13 19:58:10 +02:00
parent 3b83c18b45
commit 9a0635f40c
1 changed files with 7 additions and 1 deletions

View File

@ -75,11 +75,17 @@
<!-- RSS --> <!-- RSS -->
{{ range .AlternativeOutputFormats }} {{ range .AlternativeOutputFormats }}
<link <!--<link
rel="{{ .Rel }}" rel="{{ .Rel }}"
type="{{ .MediaType.Type }}" type="{{ .MediaType.Type }}"
href="{{ .Permalink }}" href="{{ .Permalink }}"
title="{{ site.Title }}" title="{{ site.Title }}"
/>-->
<link
rel="{{ .Rel }}"
type="{{ .MediaType.Type }}"
href="/blog/index.xml"
title="{{ site.Title }}"
/> />
{{ end }} {{ end }}