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

15 lines
574 B
HTML
Raw Normal View History

2023-07-02 22:24:51 -04:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
<hr>
{{ $paginator := .Paginate (where .RegularPagesRecursive "Type" "art") }}
{{ if eq $paginator.PageNumber 1}}
2023-09-04 07:59:34 -04:00
<p>This is a collection of guest artwork made by other artists. The name of the artist is located on the details page of each artwork!</p>
2023-07-02 22:24:51 -04:00
2023-09-04 07:59:34 -04:00
<p>If you draw one of my characters, it can be featured on this page! If you want me to remove it for any reason (or maybe I forgot to add yours), please <a href="/contact">contact me</a>.</p>
2023-07-02 22:24:51 -04:00
{{ end }}
{{ partial "art-gallery" . }}
{{ end }}