congo/layouts/partials/header.html

25 lines
795 B
HTML
Raw Normal View History

2021-08-20 07:02:08 +00:00
<header class="flex justify-between py-6 font-semibold sm:py-10 text-neutral-800 dark:text-neutral">
2021-08-11 05:28:33 +00:00
<div>
<a
class="hover:underline hover:underline-primary-500 hover:underline-thickness-bold hover:underline-offset-small"
rel="me"
href="{{ .Site.BaseURL }}"
>{{ .Site.Title }}</a
>
2021-08-11 05:28:33 +00:00
</div>
<nav>
<ul class="flex flex-col list-none sm:flex-row">
2021-08-11 05:28:33 +00:00
{{ range .Site.Menus.main }}
<li class="mb-1 text-right sm:mb-0 sm:mr-7 sm:last:mr-0">
<a
class="hover:underline hover:underline-primary-500 hover:underline-thickness-bold hover:underline-offset-small"
href="{{ .URL | absURL }}"
title="{{ .Title }}"
>{{ .Name }}</a
>
2021-08-11 05:28:33 +00:00
</li>
{{ end }}
</ul>
</nav>
</header>