gitextract_xvvrlvj7/ ├── .eleventy.js ├── .eleventyignore ├── .forestry/ │ └── settings.yml ├── .gitattributes ├── .gitignore ├── .nvmrc ├── 404.md ├── LICENSE ├── LICENSE.txt ├── README.md ├── _data/ │ └── site.json ├── _includes/ │ ├── assets/ │ │ ├── css/ │ │ │ ├── 404.css │ │ │ └── inline.css │ │ ├── js/ │ │ │ ├── 404.js │ │ │ ├── inline.js │ │ │ └── search.js │ │ └── utils/ │ │ ├── image.txt │ │ └── imagesize.txt │ ├── components/ │ │ ├── contact.njk │ │ ├── footer.njk │ │ ├── head.njk │ │ ├── header.njk │ │ └── nav.njk │ ├── experimental/ │ │ └── blog/ │ │ ├── author.njk │ │ ├── authors.njk │ │ ├── components/ │ │ │ ├── pageslist.njk │ │ │ └── postslist.njk │ │ ├── content/ │ │ │ └── posts/ │ │ │ ├── firstpost.md │ │ │ ├── fourthpost.md │ │ │ ├── posts.json │ │ │ ├── secondpost.md │ │ │ ├── the-fifth-and-hopefully-final-example-post.md │ │ │ └── thirdpost.md │ │ ├── layouts/ │ │ │ ├── blog.njk │ │ │ └── post.njk │ │ ├── pages/ │ │ │ └── blog.md │ │ └── tags.njk │ └── layouts/ │ ├── 404.njk │ ├── base.njk │ ├── contact.njk │ ├── page.njk │ └── robots.njk ├── admin/ │ ├── config.yml │ ├── index.html │ └── preview-templates/ │ ├── index.js │ ├── page.js │ └── post.js ├── content/ │ ├── buy.md │ └── pages/ │ ├── contact.md │ ├── home.md │ └── pages.json ├── filters/ │ └── searchFilter.js ├── loader.js ├── manuscript/ │ ├── Book.txt │ ├── manuscript.json │ ├── process.json │ ├── process.md │ ├── rules.json │ ├── rules.md │ ├── why.json │ └── why.md ├── netlify.toml ├── outline.md ├── package.json ├── password_template.html ├── postcss.config.js ├── robots.md ├── search-index.json.njk └── styles/ ├── tailwind.config.js └── tailwind.css