show me your website :3
Posted: Thu Apr 24, 2025 8:50 pm
just updated mine here! http://nycki.net/
currently this site is html5 and css3, but I'm going to look into downgrading it to html4 and css2 so that it will render correctly on really old browsers. this mostly means I need to take out all the parts in the css where it goes and copy/paste the actual color code there, because css2 doesn't have variables. I don't want to do that by hand everywhere it appears, so it's time to look into adding sass to my 11ty install.
if you haven't checked it out yet, I highly recommend 11ty for site templating. I've tried about a dozen site generators and 11ty has the best power-for-effort tradeoff by far. you need to know a little bit of JS to get started, but after that you can use it to parse markdown to html, copy a navbar onto every page, add prev/next links to pages, and all sorts of stuff that would normally be a lot of manual work on every change. my own templates are here if you want to copy them!
currently this site is html5 and css3, but I'm going to look into downgrading it to html4 and css2 so that it will render correctly on really old browsers. this mostly means I need to take out all the parts in the css where it goes
Code: Select all
color: var(--accent-color)if you haven't checked it out yet, I highly recommend 11ty for site templating. I've tried about a dozen site generators and 11ty has the best power-for-effort tradeoff by far. you need to know a little bit of JS to get started, but after that you can use it to parse markdown to html, copy a navbar onto every page, add prev/next links to pages, and all sorts of stuff that would normally be a lot of manual work on every change. my own templates are here if you want to copy them!