Created
March 16, 2016 20:30
-
-
Save svrist/23f468bf9bf87dec3c3d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ $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