35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
{{ define "main" }}
|
|
<h2>{{ .Title }}</h2>
|
|
|
|
{{ .Content }}
|
|
|
|
{{ $art := (index site.Data ($.Param "json")) }}
|
|
{{ $newgrounds_icon := resources.Get "newgrounds.png" }}
|
|
|
|
{{ range $art.categories }}
|
|
<h3>{{ .name }}</h3>
|
|
<p>{{ .description }}</p>
|
|
{{ range sort .years "year" "desc" }}
|
|
<h4>{{ .year }}</h4>
|
|
|
|
<div class="gallery">
|
|
{{ range .pieces }}
|
|
<figure>
|
|
{{ $full := resources.Get (printf "%s/%s" ($.Param "json") .filename) }}
|
|
|
|
<audio controls src="{{ $full.Permalink }}" preload="metadata">
|
|
Your browser does not support audio.
|
|
</audio>
|
|
|
|
<figcaption>
|
|
"{{ .title }}"
|
|
{{ if .newgrounds_url }}
|
|
<a href="{{ .newgrounds_url }}"><img alt="Newgrounds Icon" width="16" height="16" src="{{ $newgrounds_icon.Permalink }}"></a>
|
|
{{ end }}
|
|
</figcaption>
|
|
</figure>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|