work on porting over contact form from old site, also added initial db support
to use later
This commit is contained in:
parent
8d989ef36f
commit
f641dac69b
12 changed files with 232 additions and 32 deletions
|
|
@ -13,6 +13,12 @@
|
|||
href="https://fonts.googleapis.com/css2?family=VT323&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<script>
|
||||
const yearSpan = document.querySelector("#copyright-year");
|
||||
if (yearSpan) {
|
||||
yearSpan.innerHTML = new Date().getFullYear().toString();
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
:root {
|
||||
--min-body-width: 30ch;
|
||||
|
|
@ -96,9 +102,7 @@
|
|||
</main>
|
||||
<footer>
|
||||
<p>
|
||||
© <script is:inline>
|
||||
document.write(new Date().getFullYear());
|
||||
</script>
|
||||
© <span id="copyright-year">2026</span>
|
||||
badblocks
|
||||
</p>
|
||||
<p>Made from scratch with BAHA: Bun, Astro, Htmx, and Alpine!</p>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue