mirror of
https://github.com/Damillora/Yuika
synced 2024-11-05 02:17:32 +00:00
22 lines
836 B
Handlebars
22 lines
836 B
Handlebars
<header class="flex flex-row py-2 flex-wrap w-full">
|
|
{{#if @site.logo}}
|
|
<div class="flex flex-col h-12">
|
|
<img src="{{img_url @site.logo size="l"}}" alt="{{@site.title}}" class="w-full h-full object-contain">
|
|
</div>
|
|
{{/if}}
|
|
<div class="flex flex-col ml-4 flex-grow">
|
|
<div class="">
|
|
<a href="{{@site.url}}">
|
|
<h1 class="text-lg text-white">{{@site.title}}</h1>
|
|
</a>
|
|
</div>
|
|
<div class="">
|
|
<p class="text-sm text-white">{{@site.description}}</p>
|
|
</div>
|
|
</div>
|
|
<div id="menushow" class="block md:hidden flex flex-column items-center px-2 py-2 cursor-pointer">
|
|
<img src="{{asset "images/menu.svg"}}" class="h-8 text-white" style="filter: invert(1);" alt="menu"/>
|
|
</div>
|
|
{{navigation}}
|
|
</header>
|