redstrate.com/themes/red/layouts/partials/art-fancy-button.html

12 lines
357 B
HTML

{{ $img := .Scratch.Get "img" }}
{{ $title := .Scratch.Get "title" }}
{{ $link := .Scratch.Get "link" }}
{{ with resources.Get $img }}
<a class="art-fancy-button" href="{{ $link }}">
<p>{{ $title }}</p>
<img src="{{ .RelPermalink }}" width=400 height=150 />
</a>
{{ else }}
<strong>Could not find {{ $img }}!</strong>
{{ end }}