Welcome to mirror list, hosted at ThFree Co, Russian Federation.

menu_page_list.html « partials « layouts - github.com/jsnjack/kraiklyn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d166c4ec23bc42f94bdc5bb73a61ac7544e3c14a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
    <li>
        <a href="#{{ .Params.anchor }}">{{ .Title }}</a>
{{ if .Pages }}
        <ul>
            {{ range .Pages.ByWeight }}
                {{ if .IsSection }}
                    {{ partial "menu_page_list.html" . }}
                {{ else }}
                    <li><a href="#{{ .Params.anchor }}">{{ .Title }}</a></li>
                {{ end }}
            {{ end }}
        </ul>
{{ end }}
    </li>