aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/_default/_markup/render-image.html
diff options
context:
space:
mode:
Diffstat (limited to 'generators/hugo/themes/tdro/layouts/_default/_markup/render-image.html')
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/_markup/render-image.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/generators/hugo/themes/tdro/layouts/_default/_markup/render-image.html b/generators/hugo/themes/tdro/layouts/_default/_markup/render-image.html
new file mode 100644
index 0000000..b5deec5
--- /dev/null
+++ b/generators/hugo/themes/tdro/layouts/_default/_markup/render-image.html
@@ -0,0 +1,18 @@
+{{ $imageFile := print "public" (.Destination | safeURL) }}
+{{ $image := imageConfig $imageFile }}
+{{- /* This comment removes trailing newlines. */ -}}
+<figure>
+ <a href="{{ .Destination | safeURL }}" onclick="return false;">
+ <img data-image-zoom
+ src="{{ .Destination | safeURL }}"
+ alt="{{ $.Text }}"
+ title="{{ $.Text }}"
+ width="{{ $image.Width }}"
+ height="{{ $image.Height }}"
+ />
+ </a>
+ <figcaption class="has-text-centered has-text-grey-dark">
+ {{ $.Title | markdownify }}
+ </figcaption>
+</figure>
+{{- /* This comment removes trailing newlines. */ -}}