Skip to content

Commit

Permalink
tweak footer
Browse files Browse the repository at this point in the history
  • Loading branch information
viperML committed Jul 8, 2024
1 parent c1debf8 commit a1ff5f5
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,28 @@ const urlShort =

<footer class:list={[className]}>
<p>
Blog posts © {date.getFullYear()} Fernando Ayats under <a
Posts © {date.getFullYear()} Fernando Ayats under <a
href="https://creativecommons.org/licenses/by-nc-sa/4.0/"
>CC-BY-NC-SA 4.0</a
>
</p>
<p>
Built with Astro from <a href={url}>{urlShort}</a>
Built with <a href="https://astro.build">Astro</a> from <a href={url}>{urlShort}</a>
</p>
</footer>

<style>
<style lang="less">
footer {
margin-top: 3rem;
display: grid;
width: 100%;
}

a {
text-decoration: underline;

&:hover {
color: var(--text-color-alt);
}
}
</style>

0 comments on commit a1ff5f5

Please sign in to comment.