We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d8109b commit 1c7d36fCopy full SHA for 1c7d36f
hugo.toml
@@ -5,6 +5,9 @@ theme = ["pyladies"]
5
summaryLength = 10
6
enableInlineShortcodes = true
7
8
+[outputs]
9
+home = ["HTML", "RSS"]
10
+
11
[[menus.main]]
12
name = 'Home'
13
pageRef = '/'
themes/pyladies/layouts/partials/head.html
@@ -15,5 +15,8 @@
15
<meta property="og:image:alt" content="PyLadiesCon Logo">
16
{{ end }}
17
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
18
+{{ with .OutputFormats.Get "rss" -}}
19
+ {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
20
+{{ end -}}
21
{{ partialCached "head/css.html" . }}
22
{{ partialCached "head/js.html" . }}
0 commit comments