2023-03-19 01:33:12 +00:00
|
|
|
{{ $millironx := resources.Get "graphics/millironx.svg" }}
|
2023-03-19 01:53:07 +00:00
|
|
|
{{ $currentPage := . }}
|
2024-12-02 02:32:01 +00:00
|
|
|
<aside>
|
2024-11-20 16:11:50 +00:00
|
|
|
<nav>
|
|
|
|
{{ range .Site.Menus.main }}
|
2023-03-19 01:33:12 +00:00
|
|
|
<a
|
2024-11-20 16:11:50 +00:00
|
|
|
class="{{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}"
|
|
|
|
href="{{ .URL }}"
|
2023-03-19 01:33:12 +00:00
|
|
|
>
|
2024-12-02 01:33:39 +00:00
|
|
|
{{- partial "fa.html" .Params.icon -}}
|
2024-11-20 16:11:50 +00:00
|
|
|
{{ .Name }}
|
2023-03-19 01:33:12 +00:00
|
|
|
</a>
|
2024-11-20 16:11:50 +00:00
|
|
|
{{ end }}
|
2023-03-19 01:33:12 +00:00
|
|
|
</nav>
|
|
|
|
</aside>
|