This commit is contained in:
2026-02-17 20:03:12 -08:00
commit e230ebbc33
10 changed files with 2494 additions and 0 deletions

12
eleventy.config.js Normal file
View File

@ -0,0 +1,12 @@
export default async function(eleventyConfig) {
eleventyConfig.addPassthroughCopy({"css": "assets/css"});
};
export const config = {
dir: {
input: "src"
},
markdownTemplateEngine: "njk",
htmlTemplateEngine: "njk",
templateFormats: ["html", "md", "njk"],
};