Add RSS item in footer
This commit is contained in:
parent
8f166344b8
commit
a423125eee
1 changed files with 19 additions and 1 deletions
|
|
@ -11,7 +11,11 @@
|
|||
|
||||
<footer class="site-footer">
|
||||
<div class="footer-content">
|
||||
<p class="copyright">© {currentYear} Justin Edmund</p>
|
||||
<p class="copyright">
|
||||
© {currentYear} Justin Edmund
|
||||
<span class="separator">·</span>
|
||||
<a href="/rss" class="rss-link">RSS</a>
|
||||
</p>
|
||||
<nav class="social-links">
|
||||
{#each socialLinks as link, index}
|
||||
<a href={link.url} target="_blank" rel="noopener noreferrer">{link.name}</a>
|
||||
|
|
@ -49,6 +53,20 @@
|
|||
margin: 0;
|
||||
font-size: 0.875rem; // 14px
|
||||
color: $grey-40; // #999
|
||||
|
||||
.separator {
|
||||
margin: 0 $unit-half;
|
||||
}
|
||||
|
||||
.rss-link {
|
||||
color: $grey-40;
|
||||
text-decoration: none;
|
||||
transition: color 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
color: $red-60;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.social-links {
|
||||
|
|
|
|||
Loading…
Reference in a new issue