redstrate.com/themes/red/layouts/partials/sidebar.html

13 lines
488 B
HTML
Raw Normal View History

2022-08-23 12:53:11 -04:00
<nav>
2023-04-17 14:15:24 -04:00
<details id="nav-menu" open>
<summary>Navigation</summary>
{{ $icon := resources.Get "external-link.svg" }}
{{ range .Site.Menus.main }}
<div class="site-menu">
<a href="{{ .URL }}">{{ .Name }}{{ if strings.HasPrefix .URL "http" }}<img class="external-link" aria-hidden="true" alt="External link" width="16" height="16" src="{{ $icon.Permalink }}"/>{{- end -}}</a>
</div>
{{ end }}
</details>
</nav>