lumbung-theme/layouts/_default/list.html

33 lines
603 B
HTML
Raw Normal View History

2021-07-08 10:42:38 +02:00
{{ define "main" }}
2021-09-24 15:39:53 +02:00
<section class='entries'>
2021-07-08 10:42:38 +02:00
<div class="h-feed">
2021-09-24 15:39:53 +02:00
{{ range (.Paginator 13).Pages }}
{{ if in .Params.categories "tv"}}
{{- partial "video_box.html" . -}}
{{ else if in .Params.categories "calendar" }}
{{- partial "calendar_card.html" . -}}
{{ else if in .Params.categories "network" }}
{{- partial "network_card.html" . -}}
{{ else }}
{{- partial "card.html" . -}}
{{ end }}
2021-07-08 10:42:38 +02:00
{{ end }}
2021-09-24 15:39:53 +02:00
</div>
<nav class="pagination">
{{ template "_internal/pagination.html" . }}
</nav>
</main>
2021-07-08 10:42:38 +02:00
{{ end }}