14 lines
574 B
HTML
14 lines
574 B
HTML
{{ define "main" }}
|
|
<h2>{{ .Title }}</h2>
|
|
<hr>
|
|
|
|
{{ $paginator := .Paginate (where .RegularPagesRecursive "Type" "art") }}
|
|
|
|
{{ if eq $paginator.PageNumber 1}}
|
|
<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>
|
|
|
|
<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>
|
|
{{ end }}
|
|
|
|
{{ partial "art-gallery" . }}
|
|
{{ end }}
|