mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
fb797184b6
- Make blockquotes look like blockquotes - Make the nav links use the unstyled-list class to avoid re-writing
14 lines
338 B
HTML
14 lines
338 B
HTML
<header id="banner">
|
|
<nav>
|
|
<ul class="unstyled-list">
|
|
<li class="home">
|
|
<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>
|