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

40 lines
2.1 KiB
HTML
Raw Normal View History

2022-12-20 19:16:53 -05:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
2023-02-23 17:39:20 -05:00
<hr>
{{ $paginator := .Paginate (where .RegularPagesRecursive "Type" "art") }}
2022-12-20 19:16:53 -05:00
{{ if eq $paginator.PageNumber 1}}
2023-06-12 22:03:57 -04:00
<div class="art-outer">
<div class="art-inner">
{{ $alertimg := resources.Get "alert.png" }}
{{ with $.Params.new_banner }}
<div class="new-banner"><img alt="Alert Icon" width="16" height="16" class="banner-alert-icon" src="{{ $alertimg.RelPermalink }}"><b>{{ . }}</b><img alt="Alert Icon" width="16" height="16" class="banner-alert-icon" src="{{ $alertimg.RelPermalink }}"></div>
{{ end }}
2024-02-23 22:35:59 -05:00
<p>Welcome to my art gallery! I have been saving my work since 2016, and this is the most complete archive of my work online. You might also be interested in <a href="/blog/2023/04/breakdown-of-my-static-art-gallery/">how this gallery works and how I maintain it</a>.</p>
2022-12-20 19:16:53 -05:00
2023-09-04 07:59:34 -04:00
<p>The gallery is sorted by date, but there's other sections to check out such as <a href="/art/guest">Guest Art</a> and <a href="/art/stats/">Stats</a>! You can also filter by <a href="/art/tags">tags</a>, or by <a href="/art/characters">characters</a>.</p>
2022-12-20 19:16:53 -05:00
2023-09-04 07:59:34 -04:00
<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 via <a href="/art/index.xml">RSS</a>!</p>
2023-06-12 22:03:57 -04:00
</div>
2023-06-12 22:03:57 -04:00
{{ with resources.Get "pics/pic-gallery.png" }}
2024-02-21 17:54:24 -05:00
<img class="gallery-img page-pic" alt="Drawing of an art gallery with several people standing around a piece hanging on the wall." width="{{ .Width }}" height="{{ .Height }}" src="{{ .RelPermalink }}">
2023-06-12 22:03:57 -04:00
{{ end }}
</div>
2022-12-27 21:47:12 -05:00
2023-06-12 22:03:57 -04:00
<div class="art-button-container">
<a class="art-button" href="/art/characters">Characters</a>
<a class="art-button" href="/art/tags">Tags</a>
2024-02-21 17:54:24 -05:00
<a class="art-button" href="/art/stats">Statistics</a>
2023-07-02 22:24:51 -04:00
<a class="art-button" href="/art/guest">Guest Art</a>
2023-06-12 22:03:57 -04:00
</div>
2022-12-20 19:16:53 -05:00
{{ end }}
2022-12-27 21:47:12 -05:00
2022-12-27 22:34:31 -05:00
{{ partial "art-gallery" . }}
2024-02-21 17:54:24 -05:00
{{ partial "art-years" . }}
2022-12-20 19:16:53 -05:00
{{ end }}