gitextract_tacdydk9/ ├── .gitignore ├── LICENSE.md ├── README.md ├── archetypes/ │ └── default.md ├── exampleSite/ │ ├── content/ │ │ ├── _index.md │ │ └── post/ │ │ ├── 2012-01-23-juicy-code.md │ │ ├── 2012-04-23-hacker-with-horn.md │ │ ├── 2015-07-23-command-line-awesomeness.md │ │ └── 2018-08-30-markdown-guide.md │ ├── hugo.toml │ └── static/ │ └── css/ │ └── theme-override.css ├── layouts/ │ ├── 404.html │ ├── _default/ │ │ ├── list.html │ │ ├── single.html │ │ └── terms.html │ ├── partials/ │ │ ├── foot_custom.html │ │ ├── footer.html │ │ ├── head_custom.html │ │ └── header.html │ └── robots.txt ├── static/ │ └── css/ │ ├── fonts.css │ └── style.css └── theme.toml