Public Access
1
0

working site??

This commit is contained in:
2025-08-05 21:15:54 -04:00
parent 59f7db16fe
commit 56bde4626c
10 changed files with 376 additions and 20 deletions

22
.eleventy.js Normal file
View File

@@ -0,0 +1,22 @@
module.exports = function(eleventyConfig) {
// Pass through static assets from the "src" directory
eleventyConfig.addPassthroughCopy("src/css");
eleventyConfig.addPassthroughCopy("src/js");
eleventyConfig.addPassthroughCopy("src/resume");
// Add a shortcode for the current year for the footer
eleventyConfig.addShortcode("year", () => `${new Date().getFullYear()}`);
return {
// Set the source and output directories
dir: {
input: "src",
output: "_site",
includes: "_includes",
data: "_data"
},
markdownTemplateEngine: "njk",
htmlTemplateEngine: "njk",
dataTemplateEngine: "njk",
};
};