move kios map to its own page

This commit is contained in:
Aadil Ayub 2023-05-03 14:25:42 +05:00
parent 8a47929095
commit d50bf0ebba
4 changed files with 21 additions and 2 deletions

5
content/kios/_index.html Normal file
View File

@ -0,0 +1,5 @@
---
draft: false
---
{{< kios_map >}}

View File

@ -2,5 +2,3 @@
draft: false
---
<h1>Lumbung of Publishers</h1>
{{< publishers_map >}}

View File

@ -0,0 +1,16 @@
{{ define "main" }}
<main class="kios-page">
{{.Content}}
<section class='entries'>
<div class="h-feed">
{{ range where (.Paginator 13).Pages "Params.hidden" "ne" "true" }}
{{- partial "publishers_post_card.html" . -}}
{{ end }}
</div>
<nav class="pagination">
{{ template "_internal/pagination.html" . }}
</nav>
</main>
{{ end }}