Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tpl
diff options
context:
space:
mode:
authorDerek Perkins <derek@derekperkins.com>2014-11-25 05:59:26 +0300
committerspf13 <steve.francia@gmail.com>2015-03-13 05:13:42 +0300
commit3c147bd41922c4f0ac81bc1e1f2ffab8093d5d1c (patch)
tree0bec4e4c85249c4067c29107c7955d67ac6985c5 /tpl
parent0be2aade99a4e7d16a48cb4372d383a3d1748d10 (diff)
Added image support to the sitemap.xml template
Conflicts: tpl/template_embedded.go
Diffstat (limited to 'tpl')
-rw-r--r--tpl/template_embedded.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/tpl/template_embedded.go b/tpl/template_embedded.go
index 420ca20cb..1b620499f 100644
--- a/tpl/template_embedded.go
+++ b/tpl/template_embedded.go
@@ -77,6 +77,13 @@ func (t *GoHTMLTemplate) EmbedTemplates() {
<lastmod>{{ safeHtml ( .Date.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ end }}{{ with .Sitemap.ChangeFreq }}
<changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
<priority>{{ .Sitemap.Priority }}</priority>{{ end }}
+ {{ range .Params.images }}
+ <image:image>
+ <image:loc>.src</image:loc>
+ {{ with .title }}<image:title><![CDATA[.]]></image:title>{{ end }}
+ {{ with .caption }}<image:caption><![CDATA[.]]></image:caption>{{ end }}
+ </image:image>
+ {{ end }}
</url>
{{ end }}
</urlset>`)