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