gitextract_a8zaisbo/ ├── .gitignore ├── LICENSE ├── README.md ├── content/ │ ├── .gitignore │ ├── extra/ │ │ ├── manifest.json │ │ ├── robots.txt │ │ └── sw.js │ └── pages/ │ └── 404.md ├── develop_server.sh ├── requirements.txt ├── sample.Makefile ├── sample.fabfile.py ├── sample.pelicanconf.py ├── sample.publishconf.py └── themes/ └── thecodeship/ ├── plugins/ │ ├── assets/ │ │ ├── Readme.rst │ │ ├── __init__.py │ │ ├── assets.py │ │ ├── test_assets.py │ │ └── test_data/ │ │ ├── static/ │ │ │ └── css/ │ │ │ └── style.scss │ │ └── templates/ │ │ └── base.html │ └── sitemap/ │ ├── __init__.py │ └── sitemap.py ├── static/ │ ├── js/ │ │ └── app.js │ └── scss/ │ ├── _grid.scss │ ├── _normalize.scss │ ├── _syntax.scss │ ├── _variables.scss │ └── style.scss └── templates/ ├── archives.html ├── article.html ├── author.html ├── authors.html ├── base.html ├── categories.html ├── category.html ├── gosquared.html ├── index.html ├── page.html ├── pagination.html ├── period_archives.html ├── tag.html ├── tags.html └── translations.html