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

34 lines
604 B
HTML
Raw Normal View History

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