1<footer 2 class="bg-mantle min-h-24 inset-x-0 bottom-0 border-t-2 border-surface1 grid text-text grid-cols-3" 3> 4 {{ await comp.logo() }} 5 <div class="mt-2"> 6 <p class="text-overlay2 text-lg">Social</p> 7 <ul 8 class="grid grid-cols-3 grid-rows-2 md:block list-none text-3xl lg:text-4xl text-subtext1 space-x-1 md:space-x-2 lg:space-x-3" 9 > 10 {{ for link of author.links }} 11 <li class="inline-block"> 12 <a 13 href="{{link.link}}" 14 rel="me" 15 aria-label="{{author.name}}'s {{link.description}}" 16 > 17 <i class="u-url si si-{{link.service}} {{link.extra_classes}}"></i> 18 </a> 19 </li> 20 {{ /for }} 21 <li class="inline-block lg:text-[2rem] text-[1.75rem]"> 22 <a href="/blog.rss" aria-label="Blog RSS Feed"> 23 <i class="si si-rss"></i> 24 </a> 25 </li> 26 </ul> 27 </div> 28 <div class="mt-2"> 29 <p class="text-overlay2 text-lg">Info</p> 30 <p class="text-lg text-overlay1">&copy; 2025 dish</p> 31 <a 32 href="https://git.pyrox.dev/pyrox/new-blog/commit/{{ commit }}" 33 target="_blank" 34 class="text-blue underline" 35 >version {{ commit |> substring(0, 8) }}</a> 36 </div> 37</footer>