all repos — website @ 1d200f0be093eeb802f9ce0ade8a2083db84fbbf

personal website hosted at prithu.xyz, built using hugo

add rss.xml
Prithu Goswami prithugoswami524@gmail.com
Mon, 18 May 2020 02:05:31 +0530
commit

1d200f0be093eeb802f9ce0ade8a2083db84fbbf

parent

3dce574d88aa644541b8714e59d877616d81dc69

1 files changed, 37 insertions(+), 0 deletions(-)

jump to
A layouts/posts/rss.xml

@@ -0,0 +1,37 @@

+{{- $pctx := . -}} +{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}} +{{- $pages := slice -}} +{{- if or $.IsHome $.IsSection -}} +{{- $pages = $pctx.RegularPages -}} +{{- else -}} +{{- $pages = $pctx.Pages -}} +{{- end -}} +{{- $limit := .Site.Config.Services.RSS.Limit -}} +{{- if ge $limit 1 -}} +{{- $pages = $pages | first $limit -}} +{{- end -}} +{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }} +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Prithu Goswami's Blog</title> + <link>{{ .Permalink }}</link> + <description>Posts on computers, IT security, programming, software, technology and design</description> + {{ with .Site.LanguageCode }} + <language>{{.}}</language>{{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> + </item> + {{ end }} + </channel> +</rss>