2026-02-17 18:54:09 +01:00
<footer class="text-[var(--text-secondary)] bg-[var(--bg-primary)] body-font">
2026-02-17 17:53:00 +01:00
<div class="container px-5 py-8 mx-auto flex items-center sm:flex-row flex-col">
2026-02-17 18:54:09 +01:00
<a href=" {{ @ site .url }} " class="flex title-font font-medium items-center md:justify-start justify-center text-[var(--text-primary)]">
2026-02-19 19:06:29 +01:00
{{ # if @ site .logo }}
<img src=" {{ @ site .logo }} " alt=" {{ @ site .title }} " class="h-8 w-auto site-logo">
{{ else }}
2026-02-19 19:49:11 +01:00
{{ > "icons/logo" class = "h-8 w-auto site-logo" }}
2026-02-19 19:06:29 +01:00
{{ / if }}
2026-02-17 17:53:00 +01:00
</a>
2026-02-17 18:54:09 +01:00
<p class="text-sm text-[var(--text-secondary)] sm:ml-4 sm:pl-4 sm:border-l-2 sm:border-[var(--bg-secondary)] sm:py-2 sm:mt-0 mt-4">
2026-02-20 17:56:25 +01:00
© {{ date format = "YYYY" }} {{ @ site .title }} —
2026-02-22 08:14:28 +01:00
Published with <a href="https://ghost.org" target="_blank" rel="noopener" class="hover:text-[var(--brand-primary)] transition-colors duration-200">Ghost</a>
2026-02-17 17:53:00 +01:00
</p>
2026-02-20 10:40:04 +01:00
<nav class="sm:ml-auto sm:mt-0 mt-4">
{{ navigation type = "secondary" }}
</nav>
<span class="inline-flex sm:ml-6 sm:mt-0 mt-4 justify-center sm:justify-start">
2026-02-17 17:53:00 +01:00
{{ # if @ site .facebook }}
2026-02-22 07:59:17 +01:00
<a href=" {{ @ site .facebook_url }} " class="text-[var(--text-secondary)] hover:text-[var(--primary-hover)] transition duration-200">
{{ > "icons/facebook" class = "w-5 h-5" }}
2026-02-17 17:53:00 +01:00
</a>
{{ / if }}
{{ # if @ site .twitter }}
2026-02-22 07:59:17 +01:00
<a href=" {{ @ site .twitter_url }} " class="ml-3 text-[var(--text-secondary)] hover:text-[var(--primary-hover)] transition duration-200">
{{ > "icons/twitter" class = "w-5 h-5" }}
2026-02-17 17:53:00 +01:00
</a>
{{ / if }}
</span>
</div>
</footer>