summaryrefslogtreecommitdiff
path: root/blag/layouts/rss.xml
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2017-02-10 13:32:20 -0700
committerkballou <kballou@devnulllabs.io>2017-02-10 13:32:20 -0700
commit2ee58e2c06ef02680ee7f9f12d34fbd98519b331 (patch)
treee21873c55c281645c044b0a1e685c1fcfa0d2db1 /blag/layouts/rss.xml
parent6534b7899c7fb88e25fb4edce4f724b15fe6cf21 (diff)
downloadkennyballou.com-2ee58e2c06ef02680ee7f9f12d34fbd98519b331.tar.gz
kennyballou.com-2ee58e2c06ef02680ee7f9f12d34fbd98519b331.tar.xz
Migrate blog content to new repository
Diffstat (limited to 'blag/layouts/rss.xml')
-rw-r--r--blag/layouts/rss.xml21
1 files changed, 0 insertions, 21 deletions
diff --git a/blag/layouts/rss.xml b/blag/layouts/rss.xml
deleted file mode 100644
index 5950804..0000000
--- a/blag/layouts/rss.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
- <channel>
- <title>{{ .Title }} on {{ .Site.Title }} </title>
- <generator uri="https://gohugo.io">Hugo</generator>
- <link>{{ .Permalink }}</link>
- {{ with .Site.LanguageCode }}<language>{{ . }}</language>{{ end }}
- {{ with .Site.Author.name }}<author>{{ . }}</author>{{ end }}
- {{ with .Site.Copyright }}<copyright>{{ . }}</copyright>{{ end }}
- <updated>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" }}</updated>
- {{ range first 15 .Data.Pages }}
- <item>
- <title>{{ .Title }}</title>
- <link>{{ .Permalink }}</link>
- <pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" }} </pubDate>
- {{ with .Site.Author.name }}<author>{{ . }}</author>{{ end }}
- <guid>{{ .Permalink }}</guid>
- <description>{{ .Content | html }}</description>
- </item>
- {{ end }}
- </channel>
-</rss>