www.byjp.me/layouts/partials/menu.html
JP Hastings-Spital aa3c92b9db Adding interactions to clap count
This means that people appreciating my posts on other platforms get a single clap per interaction type (eg. comment or star or repost etc.)
2024-06-20 14:25:09 +01:00

8 lines
414 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 }}">{{ partial "svg.html" (dict "name" (index site.Params.defaultSVG (.Identifier | singularize))) }}<span> {{ .Name }}</span></a></li>
{{- end }}
</ul>
</nav>