An experimental IndieWeb site built in Go.
at main 386 B view raw
1package components 2 3templ Sidebar() { 4 <aside class="min-w-0"> 5 <div class="w-full md:sticky md:top-8"> 6 <h1 class="font-extrabold text-xl">puregarlic dot space</h1> 7 <p class="font-light mt-3 text-subtle italic md:text-sm"> 8 this space is mine, it was <a class="underline hover:text-iris" href="https://github.com/puregarlic/space">made by me</a>! 9 </p> 10 </div> 11 </aside> 12}