mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-09 09:46:11 +01:00
8 lines
432 B
HTML
8 lines
432 B
HTML
<nav class="menu">
|
|
<ul class="menu__inner">
|
|
{{- $page := .Page -}}
|
|
{{ range .Site.Menus.main -}}
|
|
<li class="micro{{ if hasPrefix $page.RelPermalink .URL }} active{{ end }}"><a href="{{ .URL }}" title="{{ .Name }}">{{ partialCached "svg.html" (dict "name" (index site.Params.defaultSVG (.Identifier | singularize))) .Identifier }}<span> {{ .Name }}</span></a></li>
|
|
{{- end }}
|
|
</ul>
|
|
</nav>
|