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

25 lines
851 B
HTML
Raw Permalink Normal View History

2024-10-17 13:53:59 -04:00
{{ $img := .Scratch.Get "img" }}
{{ $title := .Scratch.Get "title" }}
{{ $link := .Scratch.Get "link" }}
{{ $commissions := .Scratch.Get "commissions" }}
2024-10-17 13:53:59 -04:00
{{ with resources.Get $img }}
<a class="art-fancy-button" href="{{ $link }}">
<div style="display: inline-grid">
<p>{{ $title }}</p>
<img src="{{ .RelPermalink }}" width=400 height=150 />
</div>
{{ if $commissions }}
{{ $art_config := index $.Site.Data "art-config" }}
{{ if $art_config.commissions }}
<span class="commission-button-text" id="commission-open">OPEN</span>
{{ else }}
<span class="commission-button-text" id="commission-closed">CLOSED</span>
{{ end }}
{{ end }}
2024-10-17 13:53:59 -04:00
</a>
{{ else }}
<strong>Could not find {{ $img }}!</strong>
{{ end }}