build site via zola

This commit is contained in:
Nico 2025-05-25 15:45:17 +10:00
parent 0ebd2218fd
commit beccccb61f
11 changed files with 199 additions and 48 deletions

30
templates/chrome.html Normal file
View file

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en-AU">
<head>
<title>astolfo.org</title>
<link rel="stylesheet" href={{ get_url(path="style.css") | safe }}>
</head>
<body>
<header>
<ul>
<li><a class="header-links" href="/store">store</a></li>
<li><a class="header-links" href="/blog">blog</a></li>
<li><a class="header-links" href="/services">services</a></li>
<li><a class="header-links" href="/about">about</a></li>
</ul>
</header>
{% block content %} {% endblock content %}
<footer>
<marquee id="footer-scroll" style="font-size: 13vw; width: 50%; box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset; background-color: var(--accent2); border-radius: var(--rounding)">astolfo.org</marquee>
<!-- idk put astolfo in a train here, learn pixel art someday -->
<div>
<p>all text, html and css licensed under BSD0 unless noted otherwise.</p>
<hr>
<p>site build at commit [PUT COMMIT HERE]. source avaliable at git.astolfo.org/nico/astolfo.org</p>
</div>
</footer>
</body>
</html>