michalvankodev-site/axum_server/templates/site_header.html

21 lines
499 B
HTML
Raw Normal View History

2024-04-30 23:10:12 +02:00
<header class="min-h-full bg-blue-50 mb-5">
2024-02-27 22:53:08 +01:00
<nav class="flex">
{% match header_props.back_link %}
{% when Some with (link) %}
<a
2024-09-18 18:36:54 +02:00
class="px-3 py-2 text-lg font-medium drop-shadow-md"
2024-02-27 22:53:08 +01:00
href="{{link.href}}"
>
{{link.label}}
</a>
{% when None %}
{% endmatch %}
<aside class="flex logo-section flex-grow justify-end content-end">
2024-09-13 11:32:06 +02:00
<a class="logo p-3 text-base" href="/">
2024-02-27 22:53:08 +01:00
@michalvankodev
2024-02-22 20:13:23 +01:00
</a>
</aside>
</nav>
2024-04-30 23:10:12 +02:00
<hr class="border-blue-950 mx-5">
2024-02-22 20:13:23 +01:00
</header>