move news ticker into partial
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Aadil Ayub 2022-01-13 13:22:22 +05:00
parent 798ef02616
commit 1e0dac036a
4 changed files with 56 additions and 52 deletions

View File

@ -3,9 +3,13 @@
{{- partial "head.html" . -}} {{- partial "head.html" . -}}
<body> <body>
{{- partial "header.html" . -}} {{- partial "header.html" . -}}
<div id="content"> <div id="content">
{{- block "main" . }}{{- end }} {{- block "main" . }}{{- end }}
</div> </div>
{{- partial "news-ticker.html" . -}}
{{- partial "footer.html" . -}} {{- partial "footer.html" . -}}
</body> </body>
<script> <script>

View File

@ -1,40 +1,40 @@
{{ define "main" }} {{ define "main" }}
<section class='entries'> <main>
<div class="h-feed"> <section class='entries'>
{{ range (.Paginator 13).Pages }} <div class="h-feed">
{{ range (.Paginator 13).Pages }}
{{ if in .Params.categories "tv"}} {{ 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 if in .Params.categories "page" }} {{- partial "video_box.html" . -}}
{{- partial "blank.html" . -}} {{ else if in .Params.categories "calendar" }}
{{ else }} {{- partial "calendar_card.html" . -}}
{{- partial "card.html" . -}} {{ else if in .Params.categories "network" }}
{{ end }} {{- partial "network_card.html" . -}}
{{ end }} {{ else if in .Params.categories "shouts" }}
</div>
<nav class="pagination"> {{- partial "shout_card.html" . -}}
{{ template "_internal/pagination.html" . }}
</nav> {{ else if in .Params.categories "page" }}
{{- partial "blank.html" . -}}
{{ else }}
{{- partial "card.html" . -}}
{{ end }}
{{ end }}
</div>
<nav class="pagination">
{{ template "_internal/pagination.html" . }}
</nav>
</main> </main>
{{ end }} {{ end }}

View File

@ -1,38 +1,37 @@
{{ define "main" }} {{ define "main" }}
<section class='entries'> <main>
<div class="h-feed"> <section class='entries'>
{{ range (.Paginator 13).Pages }} <div class="h-feed">
{{ range (.Paginator 13).Pages }}
{{ if in .Params.categories "tv"}} {{ if in .Params.categories "tv"}}
{{- partial "video_box.html" . -}} {{- partial "video_box.html" . -}}
{{ else if in .Params.categories "calendar" }} {{ else if in .Params.categories "calendar" }}
{{- partial "calendar_card.html" . -}} {{- partial "calendar_card.html" . -}}
{{ else if in .Params.categories "network" }} {{ else if in .Params.categories "network" }}
{{- partial "network_card.html" . -}} {{- partial "network_card.html" . -}}
{{ else if in .Params.categories "shouts" }} {{ else if in .Params.categories "shouts" }}
{{- partial "shout_card.html" . -}} {{- partial "shout_card.html" . -}}
{{ else }} {{ else }}
{{- partial "card.html" . -}} {{- partial "card.html" . -}}
{{ end }} {{ end }}
{{ end }} {{ end }}
</div> </div>
<nav class="pagination"> <nav class="pagination">
{{ template "_internal/pagination.html" . }} {{ template "_internal/pagination.html" . }}
</nav> </nav>
</main>
<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>
</main>
{{ end }} {{ end }}

View File

@ -0,0 +1 @@
<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>