Initial commit

This commit is contained in:
2026-05-19 17:03:23 +03:00
commit 26df196bb3
38 changed files with 4185 additions and 0 deletions

17
.eleventy.js Normal file
View File

@@ -0,0 +1,17 @@
module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("src/images");
eleventyConfig.addPassthroughCopy("src/css");
eleventyConfig.addPassthroughCopy("src/js/script.js");
return {
dir: {
input: "src",
output: "_site",
includes: "_includes",
data: "_data",
},
templateFormats: ["njk", "html"],
htmlTemplateEngine: "njk",
markdownTemplateEngine: "njk",
};
};