We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60e925d commit 3091c75Copy full SHA for 3091c75
layouts/blog/rss.xml
@@ -13,7 +13,12 @@
13
<link>{{ .Site.Params.canonicalURL }}{{ .RelPermalink }}</link>
14
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
15
<guid>{{ .Site.Params.canonicalURL }}{{ .RelPermalink }}</guid>
16
- <description>{{ .Content | html }}</description>
+ <description>
17
+ {{ if .Params.meta_image }}
18
+ <img src="{{ .Site.Params.canonicalURL }}{{ .RelPermalink }}{{ .Params.meta_image }}" />
19
+ {{ end }}
20
+ {{ .Content | html }}
21
+ </description>
22
{{ range $id := .Params.authors }}
23
{{ $author := index $.Site.Data.team.team $id }}
24
{{ if $author }}
0 commit comments