gitextract__pchlr8i/ ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── archetypes/ │ └── default.md ├── exampleSite/ │ ├── config.toml │ └── content/ │ ├── about.md │ ├── blog/ │ │ ├── creating-a-new-theme.md │ │ ├── example-of-an-article.md │ │ ├── goisforlovers.md │ │ └── hugoisforlovers.md │ ├── home.md │ ├── license.md │ └── projects/ │ ├── projects.md │ └── small-project.md ├── layouts/ │ ├── 404.html │ ├── _default/ │ │ ├── section.html │ │ ├── single.html │ │ └── taxonomy.html │ ├── index.html │ └── partials/ │ ├── base_single.html │ ├── blog_single.html │ ├── content.html │ ├── css/ │ │ ├── 404.css │ │ ├── colors.css │ │ ├── main.css │ │ ├── min600px.css │ │ ├── min769px.css │ │ └── social-share-kit.css │ ├── footer.html │ ├── footer_scripts.html │ ├── head.html │ ├── head_includes.html │ ├── header.html │ ├── li.html │ ├── meta.html │ └── page-heading.html ├── static/ │ └── fonts/ │ └── Nexa Bold.otf └── theme.toml