mirror of https://github.com/jpanther/congo.git
25 lines
711 B
HTML
25 lines
711 B
HTML
<header class="flex justify-between py-6 font-semibold sm:py-10">
|
|
<div>
|
|
<a
|
|
class="hover:underline underline-primary-500 underline-thickness-bold underline-offset-small"
|
|
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 underline-primary-500 underline-thickness-bold underline-offset-small"
|
|
href="{{ .URL | absURL }}"
|
|
title="{{ .Title }}"
|
|
>{{ .Name }}</a
|
|
>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</nav>
|
|
</header>
|