mirror of https://github.com/jpanther/congo.git
15 lines
472 B
HTML
15 lines
472 B
HTML
<header class="flex justify-between py-6 font-semibold sm:py-10">
|
|
<div>
|
|
<a class="hover:underline" rel="me" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
|
|
</div>
|
|
<nav>
|
|
<ul class="flex flex-col list-none sm:flex-row">
|
|
{{ range .Site.Menus.main }}
|
|
<li class="text-right sm:mr-7 sm:last:mr-0">
|
|
<a class="hover:underline" href="{{ .URL }}" title="{{ .Title }}">{{ .Name }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</nav>
|
|
</header>
|