summaryrefslogtreecommitdiff
path: root/views/nav.html
blob: 27ab4c62e44109e11f1c1eeeaeca65e18da46f9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "nav.html" }}
<div id="nav">
    <ul>
        {{ range .Sections }}
        {{ $sec := . }}
        <li>
            <a href="/{{ $.Page }}/{{ $sec }}"
                hx-get="/api/{{ $.Page }}/{{ $sec }}"
                hx-target="#main"
                hx-swap="innerHTML"
                hx-push-url="/{{ $.Page }}/{{ $sec }}">
                {{ $sec }}/
            </a>
        </li>
        {{ end }}
    </ul>
</div>
{{ end }}