forked from ruangrupa/lumbung.space
38 lines
793 B
HTML
38 lines
793 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<section class='entries'>
|
|
<div class="h-feed">
|
|
{{ 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 if in .Params.categories "shouts" }}
|
|
|
|
{{- partial "shout_card.html" . -}}
|
|
|
|
{{ else }}
|
|
|
|
{{- partial "card.html" . -}}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
</div>
|
|
|
|
<nav class="pagination">
|
|
{{ template "_internal/pagination.html" . }}
|
|
</nav>
|
|
</main>
|
|
{{ end }}
|
|
|