summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/menu.html
blob: 356c6754d237b6bf0dca6a7ae20142ef07f57144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{{- $menuID := .Get 0 }}
{{- $caption := .Inner }}

<nav>
  <ol>
    {{- range index site.Menus $menuID }}
    <li>
      <a href="{{ .URL }}">
      {{ .Name }}
      </a>

      {{ if .HasChildren }}
      <ul>
	{{ range .Children }}
	<li>
	  <a href="{{ .URL }}">
	    {{ .Name }}
	  </a>
	  {{ end }}
      </ul>

      {{ end }}
    {{- end }}
</ol>
</nav>