This repository has been archived on 2021-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
beta.lumbung.space/themes/lumbung-theme/layouts/_default/list.html

33 lines
603 B
HTML
Raw Normal View History

2021-07-13 08:41:39 +00:00
{{ define "main" }}
2021-09-30 07:32:34 +00:00
<section class='entries'>
2021-07-13 08:41:39 +00:00
<div class="h-feed">
2021-09-30 07:32:34 +00: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-13 08:41:39 +00:00
{{ end }}
2021-09-30 07:32:34 +00:00
</div>
<nav class="pagination">
{{ template "_internal/pagination.html" . }}
</nav>
</main>
2021-07-13 08:41:39 +00:00
{{ end }}