rikkai.club
Mar. 2nd, 2026 11:52 pmAs I no longer trust AO3’s databases, I’ve finally set up a personal fannish website: rikkai.club.
It’s still a WIP as I move fics over. I also mirrored several fics on here, but my social media fic aren’t easily ported to Dreamwidth.
no subject
Date: 2026-03-10 06:15 am (UTC)no subject
Date: 2026-03-11 12:00 am (UTC)Thanks! Eleventy’s really nice in that it lets you make custom filters, so you have a lot of control over post collections. I still need to figure out a nicer way to do multi-chapter fics (right now it’s a tag AND a yaml field).
no subject
Date: 2026-03-11 03:50 am (UTC)no subject
Date: 2026-03-11 05:07 am (UTC)For background, in Eleventy there is something called
collectionswhich contains:collections['all']- every page on your sitecollections['posts']- every post on your site (that is, anything with the tag 'posts' and anything in the foldercontent/blog/)collections['various tags you make up']The way I’m handling multi-chapter fic is that they each have their unique own tag, e.g. "series: beautiful cars".
collections['series: beautiful cars']tag.collections['series: beautiful cars']tag to add prev/next navigation. Right now I figure out what tag is the fic's unique tag using a separate data field, but in theory I could just get the first tag with "series:" in it and assume it is the fic's unique tag.Alternately
You can also use Eleventy’s pagination feature to split one fic into multiple pages. However I hate editing one massive file and I hate putting big chunks of data into YAML, so I haven’t looked into it further.