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

13 lines
357 B
HTML
Raw Normal View History

2024-10-17 13:53:59 -04:00
{{ $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 }}