Implement now burning

This commit is contained in:
2025-06-06 19:19:07 -05:00
parent 698fe4b7c6
commit 3871a05833
15 changed files with 277 additions and 15 deletions

View File

@ -204,7 +204,15 @@ export default async function (eleventyConfig) {
eleventyConfig.addFilter("filterTagList", function filterTagList(tags) {
return (tags || []).filter(
(tag) =>
["all", "nav", "post", "posts", "gallery", "quiz"].indexOf(tag) === -1,
[
"all",
"nav",
"post",
"posts",
"gallery",
"quiz",
"nowBurning",
].indexOf(tag) === -1,
);
});