2022-12-20 19:16:53 -05:00
|
|
|
{{ define "main" }}
|
|
|
|
<h2>{{ .Title }}</h2>
|
|
|
|
|
2023-02-23 17:39:20 -05:00
|
|
|
<hr>
|
|
|
|
|
2022-12-28 11:12:01 -05:00
|
|
|
{{ with resources.Get .Params.filename }}
|
2023-03-28 12:53:02 -04:00
|
|
|
<img class="article-img" style="display: block; max-height: 1000px; margin-left: auto; margin-right: auto;" alt="{{ $.Params.alt_text }}" title="{{ $.Params.alt_text }}" src="{{ .RelPermalink }}"/>
|
2022-12-28 11:12:01 -05:00
|
|
|
{{ end }}
|
2022-12-20 19:16:53 -05:00
|
|
|
|
2022-12-27 21:47:12 -05:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Date</th>
|
|
|
|
<td>
|
|
|
|
<time datetime="{{ .Page.Lastmod.Format "Mon Jan 10 17:13:38 2020 -0700" }}" class="text-muted">
|
2022-12-28 10:38:03 -05:00
|
|
|
{{ $.Date.Format "January 2006" }}
|
2022-12-27 21:47:12 -05:00
|
|
|
</time>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-12-27 22:34:31 -05:00
|
|
|
|
2022-12-27 21:47:12 -05:00
|
|
|
{{ with .Params.arttags }}
|
2022-12-27 22:34:31 -05:00
|
|
|
<tr>
|
|
|
|
<th>Tags</th>
|
|
|
|
<td>
|
|
|
|
{{ $len := (len .) }}
|
|
|
|
{{ range $index, $element := . }}
|
2022-12-28 11:21:58 -05:00
|
|
|
<a href="/art/tags/{{ urlize . }}/"><strong>{{ $element }}</strong></a>{{ if not (eq (add $index 1) $len) }},{{ end }}
|
2022-12-27 22:34:31 -05:00
|
|
|
{{ end }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-12-27 21:47:12 -05:00
|
|
|
{{ end }}
|
2022-12-27 22:34:31 -05:00
|
|
|
|
2022-12-27 21:47:12 -05:00
|
|
|
{{ with .Params.characters }}
|
2022-12-27 22:34:31 -05:00
|
|
|
<tr>
|
|
|
|
<th>Characters</th>
|
|
|
|
<td>
|
|
|
|
{{ $len := (len .) }}
|
|
|
|
{{ range $index, $element := . }}
|
2022-12-28 11:21:58 -05:00
|
|
|
<a href="/art/characters/{{ urlize .}}/"><strong>{{ $element }}</strong></a>{{ if not (eq (add $index 1) $len) }},{{ end }}
|
2022-12-27 22:34:31 -05:00
|
|
|
{{ end }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-12-27 21:47:12 -05:00
|
|
|
{{ end }}
|
2023-03-25 11:24:12 -04:00
|
|
|
|
2023-03-26 13:54:00 -04:00
|
|
|
{{ with .Params.program }}
|
|
|
|
<tr>
|
|
|
|
<th>Program</th>
|
|
|
|
<td>
|
|
|
|
{{ . }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
|
2023-03-25 11:24:12 -04:00
|
|
|
{{ with .Params.mastodon_url }}
|
|
|
|
<tr>
|
|
|
|
<th>Mastodon URL</th>
|
|
|
|
<td>
|
|
|
|
<a href="{{ . }}">{{ . }}</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Params.newgrounds_url }}
|
|
|
|
<tr>
|
|
|
|
<th>Newgrounds URL</th>
|
|
|
|
<td>
|
|
|
|
<a href="{{ . }}">{{ . }}</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
|
|
|
|
{{ with .Params.pixiv_url }}
|
|
|
|
<tr>
|
|
|
|
<th>Pixiv URL</th>
|
|
|
|
<td>
|
|
|
|
<a href="{{ . }}">{{ . }}</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
|
2023-03-28 12:53:02 -04:00
|
|
|
{{ partial "voting" . }}
|
2023-03-25 11:24:12 -04:00
|
|
|
|
2022-12-27 21:47:12 -05:00
|
|
|
</table>
|
2022-12-20 19:16:53 -05:00
|
|
|
|
2023-03-08 10:42:43 -05:00
|
|
|
{{ with .Content }}
|
2022-12-28 11:09:13 -05:00
|
|
|
<h3>Commentary</h3>
|
|
|
|
|
|
|
|
<p>
|
2023-03-08 10:42:43 -05:00
|
|
|
{{ . }}
|
2022-12-28 11:09:13 -05:00
|
|
|
</p>
|
2023-03-08 10:42:43 -05:00
|
|
|
{{ end }}
|
2022-12-28 11:09:13 -05:00
|
|
|
|
2022-12-27 22:34:31 -05:00
|
|
|
{{ partial "comments" . }}
|
2022-12-20 19:16:53 -05:00
|
|
|
{{ end }}
|