Skip to content

Instantly share code, notes, and snippets.

@svrist
Created March 16, 2016 20:30
Show Gist options
  • Save svrist/23f468bf9bf87dec3c3d to your computer and use it in GitHub Desktop.
Save svrist/23f468bf9bf87dec3c3d to your computer and use it in GitHub Desktop.
{{ $suffix := or (.Get "suffix") "jpg" }}
{{ $size := or (.Get "size") "150x150" }}
{{ with .Get "file" }}
<dl class="gallery-item">
<dt class="gallery-icon landscape">
<a href="PREFIX/{{ . }}.{{ $suffix }}" data-lightbox="set1"
data-title="{{ $.Get "caption" }}" >
<img
src="PREFIX/{{ . }}-{{ $size }}.{{ $suffix }}"
itemprop="thumbnail"
alt="{{ $.Get "caption" }}" />
</a>
<dt>
<dd class='wp-caption-text gallery-caption'>
{{ $.Get "caption" }}
</dd>
</dl>
{{ end }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment