mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 08:12:11 +00:00
558b6844ca
It says "Home". That's enough to know it navigates to the homepage. Bolding it makes it look like it's the current page.
14 lines
325 B
HTML
14 lines
325 B
HTML
<header id="banner">
|
|
<nav>
|
|
<ul class="unstyled-list">
|
|
<li>
|
|
<a rel="home" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
|
|
</li>
|
|
{{ range .Site.Menus.main.ByWeight -}}
|
|
<li>
|
|
{{ .Pre }}<a href="{{ .URL }}" title="{{ .Title }}">{{- .Name -}}</a>{{ .Post }}
|
|
</li>
|
|
{{- end }}
|
|
</ul>
|
|
</nav>
|
|
</header>
|