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

34 lines
1.2 KiB
HTML
Raw Normal View History

2024-06-15 14:17:00 -04:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
<hr>
<h3>Original</h3>
{{ range $name, $taxonomy := (index .Site.Taxonomies .Params.listtag) }}
{{ $original := false }}
{{ if $taxonomy.Page.Params.original }}
{{ $original = $taxonomy.Page.Params.original }}
{{ end }}
{{ if $original }}
2024-06-15 14:21:37 -04:00
<a class="character" href="{{ $.Params.url | relLangURL }}{{ $name | urlize }}"><img class="gallery-img" width=256 height=256 src="https://images.redstrate.com/chars/{{ $name | urlize }}.jpg"/><span>{{ $taxonomy.Page.Title }}</span></a>
2024-06-15 14:17:00 -04:00
{{ end }}
{{ end }}
<h3>Others</h3>
{{ range $name, $taxonomy := (index .Site.Taxonomies .Params.listtag) }}
{{ $original := false }}
{{ if $taxonomy.Page.Params.original }}
{{ $original = $taxonomy.Page.Params.original }}
{{ end }}
{{ if not $original }}
2024-06-15 14:21:37 -04:00
<a class="character" href="{{ $.Params.url | relLangURL }}{{ $name | urlize }}"><img class="gallery-img" width=256 height=256 src="https://images.redstrate.com/chars/{{ $name | urlize }}.jpg"/><span>{{ $taxonomy.Page.Title }}</span></a>
2024-06-15 14:17:00 -04:00
{{ end }}
{{ end }}
{{ end }}