summaryrefslogtreecommitdiff
path: root/layouts/partials/navmenu.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/navmenu.html')
-rw-r--r--layouts/partials/navmenu.html48
1 files changed, 0 insertions, 48 deletions
diff --git a/layouts/partials/navmenu.html b/layouts/partials/navmenu.html
deleted file mode 100644
index af0fc2e..0000000
--- a/layouts/partials/navmenu.html
+++ /dev/null
@@ -1,48 +0,0 @@
-{{- /*
-Simplified version of the `hugo new template` menu.html default. Renders a menu for the given menu ID.
-
-@context {page} page: The current page.
-@context {string} menuID: The menu ID.
-
-@example: {{ partial "navmenu.html" (dict "menuID" "main" "page" .) }}
-*/}}
-
-{{- $currentPage := .page }}
-{{- $menuID := .menuID }}
-
-{{- with index site.Menus $menuID }}
-<nav role="navigation" aria-label="{{ lang.Translate "navmenu" | default "Site navigation" }}" class="header__navigation">
- <ul class="header__navigation-list">
- {{- range . }}
- {{- $isCurrentPage := $currentPage.IsMenuCurrent .Menu . }}
- {{- $isAncestorPage := $currentPage.HasMenuCurrent .Menu . }}
- {{- $isActive := or $isCurrentPage $isAncestorPage }}
- {{- $menuItemName := .Name }}
-
- {{- $attrs := dict "href" .URL }}
- {{- if $currentPage.IsMenuCurrent .Menu . }}
- {{- $attrs = merge $attrs (dict "class" "active" "aria-current" "page") }}
- {{- else if $currentPage.HasMenuCurrent .Menu .}}
- {{- $attrs = merge $attrs (dict "class" "ancestor" "aria-current" "true") }}
- {{- end }}
-
- <!-- Translations -->
- {{- with .Identifier }}
- {{- with lang.Translate . }}
- {{- $menuItemName = . }}
- {{- end }}
- {{- end }}
-
- <li class="header__navigation--list-item">
- <a
- href="{{ .URL }}"
- class="header__navigation-link{{ if $isActive }} header__navigation-link--active{{ end }}"
- aria-current="{{ if $isCurrentPage }}page{{ else if $isAncestorPage }}true{{ end }}"
- >
- {{ $menuItemName }}
- </a>
- </li>
- {{- end }}
- </ul>
-</nav>
-{{- end -}}