9 lines
367 B
XML
9 lines
367 B
XML
|
{{- $thumbnail := partial "images/photo_thumbnail.html" . -}}
|
||
|
<entry>
|
||
|
{{ partial "atom_entry_metadata.xml" . }}
|
||
|
<link rel="enclosure" href="{{ $thumbnail.Permalink }}" type="{{ $thumbnail.MediaType }}" length="{{ len $thumbnail.Content }}" />
|
||
|
{{ if .Content }}
|
||
|
{{ `<content type="html"><![CDATA[` | safeHTML }}{{ .Content }}]]></content>
|
||
|
{{ end }}
|
||
|
</entry>
|