@zachleat maybe not a `src` folder but a `pages` folder that's a different thing from the input dir.
everything (including *.MD) inside `pages` could generate an .html file, and everything outside will still be considered by 11ty but not used as pages.
onboarding:
$ touch pages/index.html
$ npx @11ty/eleventy
@hi_mayank I like `pages`! How you describe `pages` is exactly how the input folder operates! You can change your input folder to be anything, currently:
Onboarding:
$ touch pages/index.html
$ npx @11ty/eleventy --input=pages
I wonder if this would be a better thing to try out in our quickstart!