2019-11-22 03:43:10 +00:00
|
|
|
{{ if $.Param "showFeedLinks" }}
|
2020-02-14 11:34:16 +00:00
|
|
|
{{ if not (in ($.Param "notAllowedTypesInHomeFeed") .Type) }}
|
2020-02-14 12:48:48 +00:00
|
|
|
{{ $exclude := slice "tags" "series" "categories" }}
|
|
|
|
{{ if not (in $exclude .Type) }}
|
2020-07-07 01:25:26 +00:00
|
|
|
<a href="{{ if eq hugo.Version "0.65.2" }}{{ .CurrentSection.FirstSection.Permalink }}{{ else }}{{ .FirstSection.Permalink }}{{ end }}index.xml" type="application/rss+xml" title="RSS" aria-label="RSS Feed Link">
|
2020-02-14 12:48:48 +00:00
|
|
|
{{ partial "svgs/etc/rss.svg" (dict "width" 32 "height" 32) }}
|
|
|
|
</a>
|
|
|
|
{{ else }}
|
|
|
|
<a href="{{ .Permalink }}/index.xml" type="application/rss+xml" title="RSS" aria-label="RSS Feed Link">
|
|
|
|
{{ partial "svgs/etc/rss.svg" (dict "width" 32 "height" 32) }}
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
2020-02-14 11:34:16 +00:00
|
|
|
{{ end }}
|
2020-07-07 01:25:26 +00:00
|
|
|
{{ end }}
|