21 lines
499 B
HTML
21 lines
499 B
HTML
<header class="min-h-full bg-blue-50 mb-5">
|
|
<nav class="flex">
|
|
{% match header_props.back_link %}
|
|
{% when Some with (link) %}
|
|
<a
|
|
class="px-3 py-2 text-lg font-medium drop-shadow-md"
|
|
href="{{link.href}}"
|
|
>
|
|
{{link.label}}
|
|
</a>
|
|
{% when None %}
|
|
{% endmatch %}
|
|
<aside class="flex logo-section flex-grow justify-end content-end">
|
|
<a class="logo p-3 text-base" href="/">
|
|
@michalvankodev
|
|
</a>
|
|
</aside>
|
|
</nav>
|
|
<hr class="border-blue-950 mx-5">
|
|
</header>
|