Skip to content

Commit

Permalink
Add RSS feed link to Footer
Browse files Browse the repository at this point in the history
Signed-off-by: Milan Gruner <[email protected]>
  • Loading branch information
lemilonkh committed Sep 17, 2023
1 parent ed7a5d4 commit acca2ce
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
---
const year = new Date().getFullYear();
---
<p class="footer">&copy {year} by Milan Gruner. All rights reserved.</p>
<p class="footer">&copy {year} by Milan Gruner. All rights reserved. <a href="/rss.xml">RSS feed</a></p><p>
<style>
.footer {
border-top: 1px solid #000;
padding-top: 16px;
color: #000;
margin-bottom: 0;
}
.footer a, footer a:visited {
color: #000;
}
.footer a:hover {
color: #444;
}
</style>

0 comments on commit acca2ce

Please sign in to comment.