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

52 lines
1.8 KiB
HTML
Raw Normal View History

2024-09-30 17:40:46 -04:00
{{/* Page layout used for the characters listing page. */}}
2024-06-15 14:17:00 -04:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
<hr>
2024-11-06 16:05:35 -05:00
{{ $.Scratch.Set "header-type" "h3" }}
{{ $.Scratch.Set "header-name" "Original" }}
{{ partial "fake-heading.html" $ }}
2024-10-17 13:53:59 -04:00
<div class="generic-con" style="display: grid; grid-template-columns: 50% 50%;">
2024-06-15 14:17:00 -04:00
{{ range $name, $taxonomy := (index .Site.Taxonomies .Params.listtag) }}
{{ $original := false }}
{{ if $taxonomy.Page.Params.original }}
{{ $original = $taxonomy.Page.Params.original }}
{{ end }}
{{ if $original }}
2024-10-12 14:59:49 -04:00
<a class="character" href="{{ $.Params.url | relLangURL }}{{ $name | urlize }}"><img class="gallery-img" width=256 height=256 src="{{ $.Site.Params.image_host }}/chars/{{ $name | urlize }}.jpg"/><span>{{ $taxonomy.Page.Title }}</span></a>
2024-06-15 14:17:00 -04:00
{{ end }}
{{ end }}
2024-10-17 13:53:59 -04:00
</div>
<br>
<details>
<summary>
2024-11-06 16:05:35 -05:00
{{ $.Scratch.Set "header-type" "strong" }}
{{ $.Scratch.Set "header-name" "Others" }}
{{ partial "fake-heading.html" $ }}
2024-10-17 13:53:59 -04:00
</summary>
<div class="generic-con" style="display: grid; grid-template-columns: 50% 50%;">
{{ range $name, $taxonomy := (index .Site.Taxonomies .Params.listtag) }}
{{ $original := false }}
{{ if $taxonomy.Page.Params.original }}
{{ $original = $taxonomy.Page.Params.original }}
{{ end }}
{{ if not $original }}
<a class="character" href="{{ $.Params.url | relLangURL }}{{ $name | urlize }}"><img class="gallery-img" width=256 height=256 src="{{ $.Site.Params.image_host }}/chars/{{ $name | urlize }}.jpg"/><span>{{ $taxonomy.Page.Title }}</span></a>
{{ end }}
2024-06-15 14:17:00 -04:00
{{ end }}
2024-10-17 13:53:59 -04:00
</div>
</details>
{{ end }}
2024-06-15 14:17:00 -04:00
2024-10-17 13:53:59 -04:00
{{ define "details" }}
{{ partial "art-sidebar" . }}
2024-06-15 14:17:00 -04:00
{{ end }}
2024-10-17 13:53:59 -04:00