enum flags: uint64_t {
FICTION = 1 << 0,
NONFICTION = 1 << 1,
};
struct splash {
char *last_modified;
enum flags;
struct page *(*path)(void);
};
struct splash stream[] = {
{ "2026-05-10", FICTION, the_maybe_button },
{ "2023-11-04", FICTION | NONFICTION, photon },
{ "2023-11-03", NONFICTION, on_rotation },
{ "2020-01-16", FICTION, the_forger },
{ "2020-01-16", FICTION, the_leak },
};