This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / blog / templates / fragments / footer.html
1.5 kB 18 lines
1{{ define "blog/fragments/footer" }} 2<footer class="mt-12 w-full px-6 py-4"> 3 <div class="max-w-[90ch] mx-auto flex flex-wrap justify-center items-center gap-x-4 gap-y-2 text-sm text-gray-500 dark:text-gray-400"> 4 <div class="flex items-center justify-center gap-x-2 order-last sm:order-first w-full sm:w-auto"> 5 <a href="https://tangled.org" class="no-underline hover:no-underline flex items-center"> 6 {{ template "fragments/dolly/logo" (dict "Classes" "size-5 text-gray-500 dark:text-gray-400") }} 7 </a> 8 <span>&copy; 2026 Tangled Labs Oy.</span> 9 </div> 10 <a href="https://docs.tangled.org" class="hover:text-gray-900 dark:hover:text-gray-200 hover:underline">Docs</a> 11 <a href="https://tangled.org/tangled.org/core" class="hover:text-gray-900 dark:hover:text-gray-200 hover:underline">Source</a> 12 <a href="https://chat.tangled.org" class="hover:text-gray-900 dark:hover:text-gray-200 hover:underline" target="_blank" rel="noopener noreferrer">Discord</a> 13 <a href="https://bsky.app/profile/tangled.org" class="hover:text-gray-900 dark:hover:text-gray-200 hover:underline" target="_blank" rel="noopener noreferrer">Bluesky</a> 14 <a href="https://x.com/tangled_org" class="hover:text-gray-900 dark:hover:text-gray-200 hover:underline" target="_blank" rel="noopener noreferrer">Twitter (X)</a> 15 <a href="/feed.xml" class="hover:text-gray-900 dark:hover:text-gray-200 hover:underline">Feed</a> 16 </div> 17</footer> 18{{ end }}