From df9ff1383e6a777d6fbe7f7d58b661704eb2c9f0 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sun, 27 Aug 2023 17:24:56 +0530 Subject: added RSS feed --- layouts/blog/rss.xml | 30 ++++++++++++++++++++++++++++++ layouts/partials/head.html | 5 +++-- 2 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 layouts/blog/rss.xml diff --git a/layouts/blog/rss.xml b/layouts/blog/rss.xml new file mode 100644 index 0000000..8362129 --- /dev/null +++ b/layouts/blog/rss.xml @@ -0,0 +1,30 @@ +{{- $pages := .Pages -}} +{{- printf "" | safeHTML }} + + + {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} Blog Posts on {{ end }}{{ .Site.Title }}{{ end }} + {{ .Permalink }} + Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}Blog Posts on {{ .Site.Title }} + Hugo -- gohugo.io{{ with .Site.LanguageCode }} + {{.}}{{end}}{{ with .Site.Author.email }} + {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Author.email }} + {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Copyright }} + {{.}}{{end}}{{ if not .Date.IsZero }} + {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ end }} + {{- with .OutputFormats.Get "RSS" -}} + {{ printf "" .Permalink .MediaType | safeHTML }} + {{- end -}} + {{ range .Sections }} + {{ range .RegularPages }} + + {{ .Title }} + {{ .Permalink }} + {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} + {{ with .Site.Author.email }}{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}} + {{ .Permalink }} + {{ .Summary | html }} + + {{ end }} + {{ end }} + + diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 16ef380..2cc0418 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -3,15 +3,16 @@ - + - + + {{ if eq .Section "blog" }} -- cgit v1.2.3