tw-runner
Version:
Run and manage Tower Website projects with this utility.
16 lines (14 loc) • 354 B
HTML
{{ $image := resources.Get .src | resources.Copy .dest }}
{{ $classes := .Get "class" }}
{{ $alt := .Get "alt" }}
{{ $link := .Get "link" }}
{{ if $image }}
<figure class="{{ $classes }}">
<a href="{{ $link }}">
<img src="{{ $image.RelPermalink }}" alt="{{ $alt }}">
</a>
<figcaption>
<p>{{ $alt }}</p>
</figcaption>
</figure>
{{ end }}