1<footer class="bg-mantle min-h-24 inset-x-0 bottom-0 absolute border-t-2 border-surface1 grid text-text grid-cols-3"> 2 <div class="flex flex-row justify-center gap-x-4 content-center"> 3 <i class="bi bi-exclamation-triangle text-yellow self-center justify-self-end text-4xl"></i> 4 <p class="text-text text-xl self-center">a space</p> 5 </div> 6 <div class="mt-2"> 7 <p class="text-overlay2 text-lg">Social</p> 8 <ul class="list-none text-4xl text-subtext1"> 9 {{ for link of author.links }} 10 <li class="inline-block"> 11 <a href="{{link.link}}" rel="me" aria-label="{{author.name}}'s {{link.description}}"> 12 <i class="si si-{{link.service}}"></i> 13 </a> 14 </li> 15 {{ /for }} 16 <li class="inline-block text-3xl"> 17 <a href="/blog.rss" aria-label="Blog RSS Feed"> 18 <i class="si si-rss"></i> 19 </a> 20 </li> 21 </ul> 22 </div> 23 <div class="mt-2"> 24 <p class="text-overlay2 text-lg">Info</p> 25 <p class="text-lg text-overlay1">&copy; 2025 dish</p> 26 <a href="https://git.pyrox.dev/pyrox/new-blog/commit/{{ commit }}" target="_blank" class="text-blue underline">version {{ commit |> substring(0, 8) }}</a> 27 </div> 28</footer> 29<div style="display:none" class="latte"></div>