35 lines
1009 B
HTML
Executable File
35 lines
1009 B
HTML
Executable File
<footer class="border-t border-border mt-auto pb-24">
|
|
<div class="container-wide py-12">
|
|
<div class="flex flex-col md:flex-row items-center justify-between gap-6">
|
|
{{/* Copyright */}}
|
|
<p class="text-sm text-text-muted">
|
|
© {{ now.Year }} {{ .Site.Params.author }}. All rights reserved.
|
|
</p>
|
|
|
|
{{/* Links */}}
|
|
<nav class="flex items-center gap-6">
|
|
<a
|
|
href="/imprint/"
|
|
class="text-sm text-text-muted hover:text-text-secondary transition-colors"
|
|
>
|
|
Imprint
|
|
</a>
|
|
<a
|
|
href="/index.xml"
|
|
class="text-sm text-text-muted hover:text-text-secondary transition-colors"
|
|
aria-label="RSS Feed"
|
|
target="_blank"
|
|
>
|
|
RSS
|
|
</a>
|
|
<a
|
|
href="mailto:{{ .Site.Params.email }}"
|
|
class="text-sm text-text-muted hover:text-text-secondary transition-colors"
|
|
>
|
|
Contact
|
|
</a>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</footer>
|