adds footer close #5

This commit is contained in:
Drew
2025-04-22 19:18:55 -06:00
parent 8e5ccb77c6
commit 5cff4da500
4 changed files with 33 additions and 3 deletions

View File

@ -0,0 +1,24 @@
<footer class="bg-sand-500 text-amber-900 mt-16">
<div class="wompum-container wompum-container--no-gap h-1">
<div class="wompum-grid" data-text="{{ .Site.Title }}" data-columns="7" data-rows="1">
</div>
</div>
<div class="p-8 pt-16 flex justify-between items-center">
<section>
<h1 class="text-2xl font-bold">
<a href="/">{{ .Site.Title }}</a>
</h1>
<p class="text-lg">{{ .Site.Params.footer | markdownify }}</p>
</section>
<nav class="font-iosevka">
<ul class="flex-col items-end gap-4">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/about">About</a>
</li>
</ul>
</nav>
</div>
</footer>