cach-radio/inc/themes/castanet/layouts/partials/taxonomies.html

25 lines
893 B
HTML
Raw Normal View History

2022-12-15 22:36:40 +01:00
<div class = "row">
<div class = "col-md-12">
{{ $type := .Type }}
{{ range $key, $value := .Data.Terms.Alphabetical }}
{{ $name := .Name }}
{{ $count := .Count }}
{{ $firstChild := index .Pages 0}}
{{ $firstImage := index ($firstChild.Params.images) 0}}
<div class="row person_row">
<div class="col-md-4">
{{ with $.Site.GetPage (printf "/%s/%s" $type $name) }}
<a href="{{ .Page.Permalink }}"><img src="{{ $firstImage | absURL }}" alt="{{ .Title }}" class="img-fluid"></a>
{{ end }}
</div>
<div class= "col-md-8">
{{ with $.Site.GetPage (printf "/%s/%s" $type $name) }}
<h3><a href="{{ .Permalink }}">{{ .Title }}</a> </h3>
{{ end }}
<p>{{ $count }} episode{{ if ne $count 1 }}s{{ end }}</p>
</div>
</div>
{{ end }}
</div>
</div>