valor/layouts/_default/section.rss.xml

32 lines
1.4 KiB
XML
Raw Normal View History

2024-04-30 04:44:58 -04:00
{{- printf "<?xml-stylesheet href=\"/css/feed.xsl\" type=\"text/xsl\"?>" | safeHTML }}
<rss version="3.0" xmlns:atom="http://www.w3.org/2005/Atom">
2022-08-17 14:47:54 -04:00
<channel>
<title>{{.Title}}</title>
<link>{{ .Permalink }}</link>
<description>{{.Params.description}}</description>
<generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
2022-09-04 09:40:18 -04:00
<language>{{.}}</language>{{end}}{{ if .Site.Data.details.profilephoto}}
<image>
<title>{{.Site.Data.details.name}}</title>
<link>{{.Site.BaseURL}}</link>
<url>{{.Site.BaseURL}}{{.Site.Data.details.profilephoto}}</url>
</image>{{end}}
2024-04-12 21:05:56 -04:00
<atom:link href="{{.Site.BaseURL}}rss" rel="self" type="application/rss+xml" />{{ range .Pages }}
2022-08-17 14:47:54 -04:00
<item>
<title>{{ .Title }}</title>
<link>{{ .Permalink }}</link>
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
2022-09-18 16:21:14 -04:00
<guid>{{ .Permalink }}</guid>{{ if .Params.gif}}
<enclosure url="{{.Site.BaseURL}}{{.Params.gif}}" />
{{end}}{{ if .Params.video}}
2022-09-04 09:40:18 -04:00
<enclosure url="{{.Site.BaseURL}}{{.Params.video}}" />
{{end}}{{ if .Params.audio}}
<enclosure url="{{.Site.BaseURL}}{{.Params.audio}}" />
{{end}}{{ if .Params.image}}
<image>{{.Params.image}}</image>{{end}}
<description>{{- .Content | html -}}</description>
</item>{{ end }}
2022-08-17 14:47:54 -04:00
</channel>
</rss>