summaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2023-08-27 17:24:56 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2023-08-27 17:24:56 +0530
commitdf9ff1383e6a777d6fbe7f7d58b661704eb2c9f0 (patch)
tree549ae81917cf9d4556be1ced866e154715764900 /layouts
parent47d598e7d01b4d44f3e06b71f9c9f755e3f62950 (diff)
added RSS feed
Diffstat (limited to 'layouts')
-rw-r--r--layouts/blog/rss.xml30
-rw-r--r--layouts/partials/head.html5
2 files changed, 33 insertions, 2 deletions
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 "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
+<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
+ <channel>
+ <title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} Blog Posts on {{ end }}{{ .Site.Title }}{{ end }}</title>
+ <link>{{ .Permalink }}</link>
+ <description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}Blog Posts 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 .Sections }}
+ {{ range .RegularPages }}
+ <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>{{ .Summary | html }}</description>
+ </item>
+ {{ end }}
+ {{ end }}
+ </channel>
+</rss>
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 @@
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="author" content={{ .Site.Author.name }}>
<meta name="robots" content="index,follow">
- <meta name="description" content="{{ if .Params.description }}{{ .Params.description }}{{ else }}{{ .Site.Params.siteDescription }}{{ end }}">
+ <meta name="description" content="{{ if .IsPage }}{{ .Title}} - {{ .Summary }}{{ else }}{{ if .Params.description }}{{ .Params.description }}{{ else }}{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }} - {{ .Site.Params.domain }}{{ end }}{{ end }}{{ end }}{{ end }}">
<meta property="og:type" content="{{if .IsPage}}article{{ else }}website{{ end }}">
<meta property="og:title" content="{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }}{{ end }} - {{if .Site.Params.domain }}{{ .Site.Params.domain }}{{ else }}{{ .Site.Title }}{{ end }}{{ else }}{{ .Site.Title }}{{ end }}">
<meta property="og:site_name" content="{{ .Site.Title }}">
- <meta property="og:description" content="{{ if .Params.description }}{{ .Params.description }}{{ else }}{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }}{{ end }}{{ end }}{{ end }}">
+ <meta property="og:description" content="{{ if .IsPage }}{{ .Title}} - {{ .Summary }}{{ else }}{{ if .Params.description }}{{ .Params.description }}{{ else }}{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }} - {{ .Site.Params.domain }}{{ end }}{{ end }}{{ end }}{{ end }}">
<meta property="og:image" content="{{ .Site.Params.ogImage }}">
<meta property="og:url" content="{{ .Permalink }}">
+
<link rel="stylesheet" type="text/css" href="/css/styles.css">
{{ if eq .Section "blog" }}
<link rel="stylesheet" type="text/css" href="/css/blog.css">