31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
<nav>
|
|
<details id="nav-menu" open>
|
|
<summary>Menu</summary>
|
|
|
|
<strong>Navigation</strong>
|
|
|
|
{{ $icon := resources.Get "external-link.svg" }}
|
|
|
|
{{ range .Site.Menus.main }}
|
|
<div class="site-menu">
|
|
{{ with resources.Get .Params.img }}
|
|
<img alt="" class="symbolic-icon" style="image-rendering: pixelated;" width="16" height="16" src="{{ .RelPermalink }}">
|
|
{{ end }}
|
|
<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.RelPermalink }}">{{- end -}}</a>
|
|
</div>
|
|
{{ end }}
|
|
|
|
<br/>
|
|
|
|
<strong>Accounts</strong>
|
|
|
|
{{ range .Site.Menus.socials }}
|
|
<div class="site-menu">
|
|
{{ with resources.Get .Params.img }}
|
|
<img alt="" style="image-rendering: pixelated;" width="{{ .Width }}" height="{{ .Height }}" src="{{ .RelPermalink }}">
|
|
{{ end }}
|
|
<a rel="me" href="{{ .URL }}">{{ .Name }}{{ if strings.HasPrefix .URL "http" }}<img class="external-link" aria-hidden="true" alt="External link" width="16" height="16" src="{{ $icon.RelPermalink }}">{{- end -}}</a>
|
|
</div>
|
|
{{ end }}
|
|
</details>
|
|
</nav>
|