Initial theme setup + index/technical pages

This commit is contained in:
2025-03-20 22:59:45 -04:00
commit a13cf711e3
23 changed files with 3242 additions and 0 deletions

14
eleventy.config.js Normal file
View File

@@ -0,0 +1,14 @@
import pugPlugin from "@11ty/eleventy-plugin-pug";
import { eleventyImageTransformPlugin } from "@11ty/eleventy-img";
export default function (eleventyConfig) {
eleventyConfig.setInputDirectory("src")
eleventyConfig.addPlugin(pugPlugin);
eleventyConfig.addPlugin(eleventyImageTransformPlugin);
eleventyConfig.addPassthroughCopy("assets/img/markmark-light.svg")
eleventyConfig.addPassthroughCopy("assets/font/obsidian/Obsidian-Roman.otf")
eleventyConfig.addPassthroughCopy("assets/font/reckless/WEB/Reckless-Bold.woff2")
eleventyConfig.addPassthroughCopy("assets/font/reckless/WEB/Reckless-Regular.woff2")
eleventyConfig.addPassthroughCopy("assets/font/reckless/WEB/Reckless-RegularItalic.woff2")
}