michalvankodev-site/templates/site_header.html
Michal Vanko 086ec33d7b
Some checks failed
test / cargo test (push) Failing after 1m10s
view transitions with almost no css
2024-10-09 11:18:47 +02:00

21 lines
569 B
HTML

<header class="min-h-full bg-blue-50 mb-5" view-transition-name="site_header">
<nav class="flex">
{% match header_props.back_link %}
{% when Some with (link) %}
<a
class="px-3 py-2 text-lg font-medium print:hidden"
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-slate-300 mx-5">
</header>