this repo has no description
1{{ define "layouts/topbar" }} 2 {{ $linkstyle := "text-gray-400 hover:text-gray-900 no-underline" }} 3 <nav class="space-x-4 mb-4 py-2 border-b border-black"> 4 <div class="container flex justify-between p-0"> 5 <div id="left-items"> 6 <a href="/" hx-boost="true" class="{{ $linkstyle }} flex gap-2"> 7 <i class="w-6 h-6" data-lucide="tangent"></i> 8 tangled.sh 9 </a> 10 </div> 11 <div id="right-items" class="flex gap-2"> 12 {{ with .LoggedInUser }} 13 <a href="/repo/new" hx-boost="true" class="{{ $linkstyle }}"> 14 <i class="w-6 h-6" data-lucide="plus"></i> 15 </a> 16 <a href="/{{ didOrHandle .Did .Handle }}" hx-boost="true" class="{{ $linkstyle }}"> 17 {{ didOrHandle .Did .Handle }} 18 </a> 19 <a href="/logout"class="{{ $linkstyle }}"> 20 (logout) 21 </a> 22 {{ else }} 23 <a href="/login" hx-boost="true" class="{{ $linkstyle }}"> 24 login 25 </a> 26 {{ end }} 27 </div> 28 </div> 29 </nav> 30{{ end }}