the home site for me: also iteration 3 or 4 of my site
My site v4 (i think)
Special Features#
- The whole website can be statically rendered in
~93ms - Deployed via cloudflare pages with a total push to deploy time of
~20s - blazing fast privacy preserving view counter with abacus
<script>
function cb(res) {
const fmt = new Intl.NumberFormat('en', { notation: 'compact' });
const elements = document.querySelectorAll("[id='visits']");
elements.forEach(el => {
el.innerText = fmt.format(res.value);
el.title = res.value + " visits";
});
}
</script>
<script async src="https://abacus.jasoncameron.dev/hit/namespace/counter?callback=cb"></script>
- Automatic OG image via a custom script using puppeteer.
Awesome projects that made this possible#
Huge thanks to Speyll/anemone for the template that helped me understand Zola
This site's theme is based off of the awesome project Speyll/suCSS/ with my own flavoring on top and the code theme is based off of uncomfyhalomacro/catppuccin-zola modified to work with data-theme (and then removed again lol).
© 2024-present Kieran Klukas