add footer notice on green hosting

This commit is contained in:
Nicola Zambello 2023-12-27 10:55:01 +02:00
parent ce70c2911f
commit fd11ef2439
Signed by: nzambello
GPG key ID: 56E4A92C2C1E50BA

View file

@ -3,10 +3,30 @@ const today = new Date();
---
<footer>
&copy; {today.getFullYear()} Nicola Zambello. <em data-tooltip="😉">No rights reserved</em>.
<p>
&copy; {today.getFullYear()} Nicola Zambello. <em data-tooltip="😉"
>No rights reserved</em
>.
</p>
<p class="subfooter">
Hosted on <a
href="https://www.hetzner.com/unternehmen/umweltschutz/"
target="_blank"
rel="noopener noreferrer">green energy</a
> in Europe.
</p>
</footer>
<style>
footer {
text-align: center;
}
footer p {
margin: 0 0 0.5em;
}
footer p.subfooter {
font-size: 0.75em;
margin-bottom: 0;
}
</style>