blog/src/components/Footer.astro

17 lines
460 B
Plaintext
Raw Normal View History

2023-08-31 08:07:03 +00:00
---
import "../styles/footer.scss";
---
<footer>
<p>
Blog code licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.txt" target="_blank"
2023-08-31 13:53:36 +00:00
>GPL-3.0</a
2023-08-31 08:07:03 +00:00
>. Post contents licensed under <a
2023-08-31 13:53:36 +00:00
href="https://creativecommons.org/licenses/by-sa/4.0/legalcode.txt">CC BY-SA 4.0</a
2023-08-31 08:07:03 +00:00
>.
<br />
Written by Michael Zhang.
2023-08-31 13:53:36 +00:00
<a href="https://git.mzhang.io/michael/blog" class="colorlink" target="_blank">Source</a>.
2023-08-31 08:07:03 +00:00
</p>
</footer>