19 lines
575 B
HTML
19 lines
575 B
HTML
{{/* <h1>{{ site.Title }}</h1>
|
|
{{ partial "menu.html" (dict "menuID" "main" "page" .) }} */}}
|
|
|
|
|
|
<h1>{{ site.Title }}</h1>
|
|
<div id="nav-border" class="container">
|
|
<nav id="nav" class="nav justify-content-center">
|
|
{{ range .Site.Menus.main }}
|
|
<a class="nav-link" href="{{ .URL }}">
|
|
{{ if .Pre }}
|
|
{{ $icon := printf "<i data-feather=\"%s\"></i> " .Pre | safeHTML }}
|
|
{{ $icon }}
|
|
{{ end }}
|
|
{{ $text := print .Name | safeHTML }}
|
|
{{ $text }}
|
|
</a>
|
|
{{ end }}
|
|
</nav>
|
|
</div> |