redstrate.com/themes/retro/layouts/_default/art.html

36 lines
1.4 KiB
HTML
Raw Normal View History

2023-03-30 21:47:18 -04:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
<hr>
{{ $paginator := .Paginate (where .RegularPagesRecursive "Type" "art") }}
{{ if eq $paginator.PageNumber 1}}
{{ with $.Params.new_banner }}
<div class="new-banner"><b>*new*</b> {{ . }}</div>
{{ end }}
<p>Welcome to my art gallery! I have saved my art since 2016, and this site contains the most complete archive of my work.</p>
<b>Contains risque art, so you should probably not view this on a work computer.</b>
<p>If you want to see other cool artists and their websites, see <a href="/links">the links page</a>.</p>
<p>You can follow me on <a href="https://mastodon.art/@redstrate">Mastodon</a>, <a href="https://www.pixiv.net/en/users/58118005" >Pixiv</a>, <a href="https://redstrate.newgrounds.com/">Newgrounds</a>, or if you like RSS feeds I have an <a href="/art/index.xml">art-only feed</a>!</p>
{{ partial "art-years" . }}
<div class="art-button-container">
<a class="art-button" href="/art/characters">Characters</a>
<a class="art-button" href="/art/tags">Tags</a>
<a class="art-button" href="/art/stats">Stats</a>
{{ if $.Params.commissions }}
<a class="art-button" href="/commission">Commissions</a>
{{ end }}
</div>
{{ end }}
{{ partial "art-gallery" . }}
{{ end }}