Added image support to the sitemap.xml template
authorDerek Perkins <derek@derekperkins.com>
Tue, 25 Nov 2014 02:59:26 +0000 (19:59 -0700)
committerspf13 <steve.francia@gmail.com>
Fri, 13 Mar 2015 02:13:42 +0000 (22:13 -0400)
Conflicts:
tpl/template_embedded.go

tpl/template_embedded.go

index 420ca20cbb004b19795405a2d7297f5432ac6541..1b620499fc5d12f610361817c5fef9990f71c4b1 100644 (file)
@@ -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>`)