mirror of
https://github.com/AzzyAz-net/AzzyBlog.git
synced 2026-08-25 19:24:58 +00:00
22 lines
463 B
Text
22 lines
463 B
Text
---
|
|
const year = new Date().getFullYear();
|
|
---
|
|
|
|
<footer class="footer">
|
|
<p>© {year}, Ahyan Zaman and his content/publications.</p>
|
|
<p><a href="https://azzyaz.net">Main Site</a>
|
|
</footer>
|
|
|
|
<style>
|
|
.footer {
|
|
margin-top: var(--space-2xl);
|
|
padding: var(--space-lg) 0;
|
|
border-top: 1px solid var(--color-border);
|
|
}
|
|
|
|
.footer p {
|
|
font-family: var(--font-heading);
|
|
font-size: 0.75rem;
|
|
color: var(--color-text-tertiary);
|
|
}
|
|
</style>
|