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/index.html

30 lines
500 B
HTML

{{ define "main" }}
<section class='entries'>
<div class="h-feed">
{{ range (.Paginator 10).Pages }}
{{ if in .Params.category "tv"}}
{{- partial "video_box.html" . -}}
{{ else if in .Params.category "calendar" }}
{{- partial "calendar_card.html" . -}}
{{ else }}
{{- partial "card.html" . -}}
{{ end }}
{{ end }}
</div>
<nav class="pagination">
{{ template "_internal/pagination.html" . }}
</nav>
</main>
{{ end }}