kulfon
Version:
Kulfon is a modern static site generator written in JavaScript.
27 lines (26 loc) • 1.34 kB
HTML
<nav class="flex items-center justify-between flex-wrap bg-gray-800 p-6">
<div class="flex items-center flex-shrink-0 text-white mr-6">
<span class="font-semibold text-xl tracking-tight">Kulfon</span>
</div>
<div class="block lg:hidden">
<button class="flex items-center px-3 py-2 border rounded text-teal-200 border-teal-400 hover:text-white hover:border-white">
<svg class="fill-current h-3 w-3" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><title>Menu</title><path d="M0 3h20v2H0V3zm0 6h20v2H0V9zm0 6h20v2H0v-2z"/></svg>
</button>
</div>
<div class="w-full block flex-grow lg:flex lg:items-center lg:w-auto">
<div class="text-sm lg:flex-grow">
<a href="/markdown" class="block mt-4 lg:inline-block lg:mt-0 text-blue-300 hover:text-white mr-4">
Markdown
</a>
<a href="/org-mode" class="block mt-4 lg:inline-block lg:mt-0 text-blue-300 hover:text-white mr-4">
Org Mode
</a>
<a href="/tags" class="block mt-4 lg:inline-block lg:mt-0 text-blue-300 hover:text-white">
Tags
</a>
</div>
<div>
<a href="https://kulfon.org" class="inline-block text-sm px-4 py-2 leading-none border rounded text-white border-white hover:border-transparent hover:text-blue-500 hover:bg-white mt-4 lg:mt-0">Kulfon Docs</a>
</div>
</div>
</nav>