Add publishers & contributor maps #66

Merged
aadil merged 39 commits from feature/leaflet-map into main 2023-09-11 09:50:48 +00:00
4 changed files with 21 additions and 2 deletions
Showing only changes of commit d50bf0ebba - Show all commits

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 }}