Here are the folder structure for a typical Eleventy project.
.
├── templatename-eleventy/
│ └── src/
│ ├── _data/
│ │ ├── settings.yaml
│ │ ├── quicklinks.yaml
│ │ └── navigation.yaml
│ ├── _includes/
│ │ ├── partials/
│ │ │ ├── content.html
│ │ │ ├── footer.html
│ │ │ ├── header.html
│ │ │ ├── hero.html
│ │ │ └── navbar.html
│ │ ├── default.html
│ │ ├── blog.html
│ │ └── posts.html
│ ├── blog/
│ │ └── index.html
│ ├── posts/
│ │ ├── posts.json
│ │ └── *.md
│ ├── static/
│ │ ├── css/
│ │ │ └── tailwind.css
│ │ └── img/
│ │ ├── logo.svg
│ │ └── ...
│ └── *.html
├── .eleventy.js
├── .eleventyignore
├── package.json
├── postcss.config.js
└── tailwind.config.js