Files
aurora/src/components/Footer.astro

46 lines
860 B
Plaintext
Raw Normal View History

2023-05-18 17:31:16 +02:00
---
const currentDateYear = new Date().getFullYear();
---
<footer>
<div class="container">
<ul>
<li>
2023-05-18 23:31:29 +02:00
<a href="mailto:thilo@thilohohlt.com">Contact</a>
2023-05-18 17:31:16 +02:00
</li>
<li>
2023-05-18 23:31:29 +02:00
<a href="https://github.com/thiloho/aurora">GitHub</a>
2023-05-18 17:31:16 +02:00
</li>
</ul>
<p>
2023-05-18 23:31:29 +02:00
<small>Copyright &copy; {currentDateYear} Your Name<br><a href="https://aurora.thilohohlt.com/">Astro aurora theme</a></small>
2023-05-18 17:31:16 +02:00
</p>
</div>
</footer>
<style>
footer {
margin-block-start: 4rem;
padding-block: 1rem;
2023-05-18 22:17:46 +02:00
background: linear-gradient(
0deg,
var(--tertiary-background-color) 0%,
var(--background-color) 100%
);
2023-05-18 23:31:29 +02:00
text-align: center;
2023-05-18 17:31:16 +02:00
}
.container {
display: grid;
2023-05-18 23:31:29 +02:00
place-items: center;
2023-05-18 17:31:16 +02:00
}
ul {
padding: 0;
display: flex;
flex-wrap: wrap;
list-style: none;
gap: 1rem;
}
</style>