Edits to readme.md, and some project housekeeping. Repo is a little less

messy.
This commit is contained in:
Jake Holtham 2026-03-24 10:40:10 -04:00
parent 6d4f8e7439
commit 61ba9a12d4
24 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ module.exports = function (eleventyConfig) {
// Collection: all posts sorted by date descending
eleventyConfig.addCollection("posts", function (collectionApi) {
return collectionApi
.getFilteredByGlob("blog/posts/**/*.md")
.getFilteredByGlob("src/blog/posts/**/*.md")
.sort((a, b) => b.date - a.date);
});
@ -35,7 +35,7 @@ module.exports = function (eleventyConfig) {
return {
dir: {
input: ".",
input: "src",
output: "_site",
includes: "_includes",
data: "_data",