summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/menu.html
blob: 3f6cc2f258ca7bd271600da0d4d33fc9176838ed (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
26
27
{{- $menuID := .Get 0 }}
{{- $caption := .Inner }}

<nav>
  <ol>
    {{- range index site.Menus $menuID }}
      {{if .Params.placeholder }}
         <li class="placeholder">{{.Name}}
       {{else}}
         <li><a href="{{ .URL }}">{{ .Name }}</a>
       {{end}}
   
      {{ if .HasChildren }}
      <ul>
	{{ range .Children }}
	<li>

	  <a href="{{ .URL }}">
	    {{ .Name }}
	  </a>
	  {{ end }}
      </ul>

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