12 lines
539 B
Text
12 lines
539 B
Text
{{- $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 }}" />
|
|
{{- $inlineThumbnail := partial "images/photo_thumbnail.html" (dict "Page" . "Width" 1280 "Height" 1280) -}}
|
|
<content type="html">{{ `<![CDATA[` | safeHTML }}
|
|
{{- with $inlineThumbnail -}}
|
|
<img src="{{ .Permalink }}">
|
|
{{- end -}}
|
|
{{- .Content -}}
|
|
]]></content>
|
|
</entry>
|