qrz.is/layouts/partials/header.html

25 lines
1.1 KiB
HTML
Raw Normal View History

2021-07-13 19:53:07 -04:00
<header>
<div class="ascii-art">
2021-07-14 05:08:35 -04:00
<a href="/" style="text-decoration: none">
2021-07-13 19:53:07 -04:00
██████╗ ██████╗ ███████╗ ██╗ ██████╗
██╔═══██╗██╔══██╗╚════██║ ██║██╔════╝
██║██╗██║██████╔╝ ███╔═╝ ██║╚█████╗
╚██████╔╝██╔══██╗██╔══╝ ██║ ╚═══██╗
╚═██╔═╝ ██║ ██║███████╗██╗██║██████╔╝
╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝╚═╝╚═════╝
2021-07-14 05:08:35 -04:00
</a>
2021-07-13 19:53:07 -04:00
</div>
<hr style="border-style: solid; size: 1px; border-color: orange" />
2021-07-13 19:53:07 -04:00
<nav>
<a style="text-decoration: none" href="/"><b>Home</b></a>
2021-07-13 19:53:07 -04:00
{{ with .Site.Menus.main }}
{{ range . }}
- <a style="text-decoration: none" href="{{ .URL | relURL }}"><b>{{ .Name }}</b></a>
{{ end }}
2021-07-13 19:53:07 -04:00
</nav>
{{ end }}
</header>
<hr style="border-style: solid; size: 1px; border-color: orange" />
</p>