site_header start
This commit is contained in:
31
axum_server/templates/site_header.html
Normal file
31
axum_server/templates/site_header.html
Normal file
@ -0,0 +1,31 @@
|
||||
<header class="min-h-full bg-blue-50">
|
||||
<nav class="">
|
||||
<section>
|
||||
<ul class="">
|
||||
{% for link in header_props.links %}
|
||||
<li>
|
||||
<a
|
||||
rel="prefetch"
|
||||
class=""
|
||||
href="{{link.href}}"
|
||||
>
|
||||
{{link.label}}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<aside class="logo-section ">
|
||||
<a class="logo" href=".">
|
||||
<img
|
||||
class=""
|
||||
src="/m-logo.svg"
|
||||
alt="m logo"
|
||||
width="44px"
|
||||
height="44px"
|
||||
/>
|
||||
</a>
|
||||
</aside>
|
||||
</section>
|
||||
</nav>
|
||||
</header>
|
Reference in New Issue
Block a user