2024-10-17 13:53:59 -04:00
|
|
|
{{ $img := .Scratch.Get "img" }}
|
|
|
|
{{ $title := .Scratch.Get "title" }}
|
|
|
|
{{ $link := .Scratch.Get "link" }}
|
2025-01-16 18:35:43 -05:00
|
|
|
{{ $commissions := .Scratch.Get "commissions" }}
|
2024-10-17 13:53:59 -04:00
|
|
|
|
|
|
|
{{ with resources.Get $img }}
|
|
|
|
<a class="art-fancy-button" href="{{ $link }}">
|
2025-01-16 18:35:43 -05:00
|
|
|
<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 }}
|