initial commit

This commit is contained in:
venus
2026-07-31 16:09:39 -05:00
commit bde04ebf0b
201 changed files with 5848 additions and 0 deletions

9
eleventy.config.js Normal file
View File

@@ -0,0 +1,9 @@
module.exports = function(eleventyConfig) {
return {
dir: {
input: "src", // Where your markdown files live
output: "_site", // Where the built HTML goes
layouts: "_layouts" // Where your HTML templates live
}
};
};