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}} —
|
|
|
|
|
{{#get "authors" limit="1" order="count.posts desc"}}
|
|
|
|
|
{{#foreach authors}}
|
|
|
|
|
Created by <a href="{{url}}" class="fancy-link">{{name}}</a>
|
|
|
|
|
{{/foreach}}
|
|
|
|
|
{{/get}}
|
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-17 18:54:09 +01:00
|
|
|
<a href="{{@site.facebook_url}}" class="text-[var(--text-secondary)] hover:text-[var(--text-primary)] transition duration-200">
|
2026-02-17 17:53:00 +01:00
|
|
|
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
|
|
|
|
|
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
|
|
|
|
|
</svg>
|
|
|
|
|
</a>
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#if @site.twitter}}
|
2026-02-17 18:54:09 +01:00
|
|
|
<a href="{{@site.twitter_url}}" class="ml-3 text-[var(--text-secondary)] hover:text-[var(--text-primary)] transition duration-200">
|
2026-02-17 17:53:00 +01:00
|
|
|
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
|
|
|
|
|
<path d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z"></path>
|
|
|
|
|
</svg>
|
|
|
|
|
</a>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|