Monorepo for Tangled
0

Configure Feed

Select the types of activity you want to include in your feed.

at master 886 B View raw
1{{ define "blog/fragments/topbar" }} 2 <header class="max-w-screen-xl mx-auto w-full" style="z-index: 20;"> 3 <nav class="mx-auto space-x-4 px-6 py-2"> 4 <div class="flex justify-between p-0 items-center"> 5 <div id="left-items"> 6 <a href="https://tangled.org" class="text-2xl no-underline hover:no-underline flex items-center gap-2"> 7 {{ template "fragments/logotypeSmall" }} 8 </a> 9 </div> 10 11 <div id="right-items" class="flex items-center gap-4"> 12 <a href="https://tangled.org/login">login</a> 13 <span class="text-gray-500 dark:text-gray-400">or</span> 14 <a href="https://tangled.org/signup" class="btn-create py-0 hover:no-underline hover:text-white flex items-center gap-2"> 15 join now {{ i "arrow-right" "size-4" }} 16 </a> 17 </div> 18 </div> 19 </nav> 20 </header> 21{{ end }}