feat: complete restyling of basic components

This commit is contained in:
2025-04-28 15:42:51 +02:00
parent 30aeb6578e
commit 807a1595d8
20 changed files with 314 additions and 63 deletions

View File

@@ -1,5 +1,27 @@
{{ with site.Copyright }}
<p>{{ now.Year }} - {{ . }}</p>
{{ else }}
<p>Copyright {{ now.Year }}. All rights reserved.</p>
{{ end }}
<div class="footer" aria-label="Footer">
<div class="columns">
<div class="column">
<div class="block">
<h3 class="footer-title title">ratten.org</h3>
<img class="image is-128x128"
src="https://notfellchen.org/static/fellchensammlung/img/logo_transparent.466f26abb037.png"
alt="Ratten Logo">
</div>
<div class="block">
{{ with site.Copyright }}
<p>Copyright {{ now.Year }} - {{ . }}</p>
{{ else }}
<p>Copyright {{ now.Year }}. All rights reserved.</p>
{{ end }}
</div>
</div>
<div class="column">
<div class="block">
<h3 class="footer-title title" data-i18n="about">Über uns</h3>
<ul class="footer-links">
<li class="footer-link"><a href="/impressum">Impressum</a></li>
</ul>
</div>
</div>
</div>
</div>