mirror of
https://github.com/thiloho/aurora.git
synced 2025-11-22 03:21:35 +01:00
46 lines
893 B
Plaintext
46 lines
893 B
Plaintext
---
|
|
const currentDateYear = new Date().getFullYear();
|
|
---
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<ul>
|
|
<li>
|
|
<a href="mailto:thilo@thilohohlt.com">Contact</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/thiloho/aurora">GitHub</a>
|
|
</li>
|
|
</ul>
|
|
<p>
|
|
<small>Copyright © {currentDateYear} Your Name<br><a href="https://aurora.thilohohlt.com/">Astro aurora theme</a></small>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<style>
|
|
footer {
|
|
padding-block: var(--size-3);
|
|
margin-block-start: var(--size-9);
|
|
background-image: linear-gradient(
|
|
0deg,
|
|
var(--tertiary-background-color) 0%,
|
|
var(--background-color) 100%
|
|
);
|
|
text-align: center;
|
|
}
|
|
|
|
.container {
|
|
display: grid;
|
|
place-items: center;
|
|
}
|
|
|
|
ul {
|
|
padding: 0;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
list-style: none;
|
|
gap: var(--size-3);
|
|
}
|
|
</style>
|