aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/list.xml
diff options
context:
space:
mode:
authorMantas <11616378+mistermantas@users.noreply.github.com>2019-01-24 19:23:35 +0200
committerGitHub <noreply@github.com>2019-01-24 19:23:35 +0200
commit4a968698e45ece04b25f41783298b9b397a191a1 (patch)
tree57ae06a3d7344f234ba71a12b7962144b8eb5472 /layouts/_default/list.xml
parent8a1aaf4737e90406119bdf5770937eea924729aa (diff)
cState is now stable on v3.0 - 2019-01-24 (info: #41)
Diffstat (limited to 'layouts/_default/list.xml')
-rw-r--r--layouts/_default/list.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/layouts/_default/list.xml b/layouts/_default/list.xml
new file mode 100644
index 0000000..219354b
--- /dev/null
+++ b/layouts/_default/list.xml
@@ -0,0 +1,30 @@
+<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
+ <channel>
+ <link rel="alternate" type="text/html" href="{{ .Site.BaseURL }}"/>
+ <title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
+ <link>{{ .Permalink }}</link>
+ <description>{{ T "incidentHistory" }}</description>
+ <generator>github.com/cstate</generator>
+ {{ with .Site.LanguageCode }}<language>{{.}}</language>{{end}}
+ {{ if not .Date.IsZero }}
+ <lastBuildDate>{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</lastBuildDate>
+ <updated>{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</updated>
+ {{ end }}
+ {{ with .Site.Copyright }}
+ <copyright>{{.}}</copyright>{{end}}
+ {{ with .OutputFormats.Get "RSS" }}
+ {{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
+ {{ end }}
+ {{ range .Pages }}
+ <item>
+ <title>{{ if .Params.resolved }}[{{ T "resolved" }}] {{ end }}{{ .Title }}</title>
+ <link>{{ .Permalink }}</link>
+ <pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
+ <guid>{{ .Permalink }}</guid>
+ <category>{{ .Params.resolvedWhen }}</category>
+ <description>{{ .Summary | html }}</description>
+ <content type="html">{{ .Content | html }}</content>
+ </item>
+ {{ end }}
+ </channel>
+</rss>