summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/menu.html
blob: 1b3dc542bcc9f448e3a9f2e4b6cbd7103497b27f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{- $menuID := .Get 0 }}
{{- $caption := .Inner }}

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