Pi66

pi66.xyz
My personal website.
git clone https://git.pi66.xyz/pi66.xyz

src/templates/partials/header.html

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
<header class="py-2.5 justify-between h-12 px-3 border-[#333333] border-1 flex items-center">
    <div class="flex items-center">
        <a href="/" class="flex items-center">
            <img
                src="/static/icons/lain.gif" 
                class="w-10 h-auto rounded-md object-contain saturate-150"
            />
            <h1 class="pi66-title ml-4 text-green-700 font-bold !text-2xl">Pi66</h1>
        </a>
    </div>
    <nav class="pr-4 flex items-center text-green-700 transition-colors duration-200 text-xl font-bold max-md:hidden gap-4">
        {% include "partials/nav.html" %}
    </nav>
</header>