Created
October 14, 2019 16:21
-
-
Save csalzman/6ad41a987dcc5c47e874cfeb1115f831 to your computer and use it in GitHub Desktop.
Hugo RSS Implementation with Categories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> | |
<channel> | |
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title> | |
<link>{{ .Permalink }}</link> | |
<description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description> | |
<generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }} | |
<language>{{.}}</language>{{end}}{{ with .Site.Author.email }} | |
<managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Author.email }} | |
<webMaster>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}{{ with .Site.Copyright }} | |
<copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }} | |
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }} | |
{{ with .OutputFormats.Get "RSS" }} | |
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }} | |
{{ end }} | |
{{ range .Pages }} | |
<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}} | |
<guid>{{ .Permalink }}</guid> | |
<description>{{- .Content | html -}}</description> | |
{{ if .Params.Categories }} | |
{{ range .Params.Categories }} | |
<category>{{ . }}</category> | |
{{ end }} | |
{{ end }} | |
</item> | |
{{ end }} | |
</channel> | |
</rss> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Was importing from hugo to wordpress and needed to also get the categories from the front matter. Assumes categories were added as an array.