lumbung.space/themes/lumbung-theme/layouts/index.html

39 lines
955 B
HTML
Raw Normal View History

2021-12-15 10:09:08 +00:00
{{ define "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">
2022-01-07 08:03:12 +00:00
{{ template "_internal/pagination.html" . }}
2021-12-15 10:09:08 +00:00
</nav>
2022-01-12 09:13:55 +00:00
<iframe src="https://documenta-fifteen.de/en/external-ticker-lumbung/" sandbox="allow-same-origin allow-scripts allow-popups allow-popups-to-escape-sandbox" scrolling="no" style="overflow: hidden" width="100%" height="80px" frameborder="0"></iframe>
2021-12-15 10:09:08 +00:00
</main>
{{ end }}