├── layouts ├── 404.html ├── _default │ ├── single.html │ ├── list.html │ ├── terms.html │ └── baseof.html ├── post │ └── single.html ├── partials │ ├── footer.html │ ├── script.html │ ├── google-analytics-async.html │ ├── date-and-tags.html │ ├── head.html │ ├── katex.html │ ├── nav.html │ └── style.html ├── shortcodes │ ├── bootstrap-table.html │ ├── bootstrap-blockquote.html │ ├── bootstrap-card-list.html │ └── bootstrap-card.html └── index.html ├── .gitattributes ├── .gitignore ├── exampleSite ├── content │ ├── post │ │ ├── _index.md │ │ ├── nasa-images │ │ │ ├── sun.jpg │ │ │ ├── earth.jpg │ │ │ ├── moon.jpg │ │ │ └── index.md │ │ ├── katex-math-typesetting │ │ │ └── index.md │ │ ├── style-a-markdown-table-with-bootstrap-classes-in-hugo.md │ │ ├── quotes-by-carl-jung.md │ │ ├── script-to-add-a-page-level-variable-to-content-front-matter-in-hugo.md │ │ ├── use-snap-to-install-the-hugo-edge-version-on-fedora-and-ubuntu.md │ │ ├── hugoisforlovers.md │ │ ├── migrate-from-jekyll.md │ │ ├── goisforlovers.md │ │ └── creating-a-new-theme.md │ ├── _index.md │ └── about.md ├── static │ └── favicon.ico ├── resources │ └── _gen │ │ └── images │ │ ├── nasa-images │ │ ├── moon_huaae7be4ba70df7325b57cd351ea21ee7_381038_700x0_resize_q75_box.jpg │ │ ├── sun_huc3d26fbb16c0f70400041133778c1446_3118921_700x0_resize_q75_box.jpg │ │ └── earth_huaae7be4ba70df7325b57cd351ea21ee7_518573_700x0_resize_q75_box.jpg │ │ └── post │ │ └── nasa-images │ │ ├── moon_huaae7be4ba70df7325b57cd351ea21ee7_381038_700x0_resize_q75_box.jpg │ │ ├── sun_huc3d26fbb16c0f70400041133778c1446_3118921_100x0_resize_q75_box.jpg │ │ ├── sun_huc3d26fbb16c0f70400041133778c1446_3118921_400x0_resize_q75_box.jpg │ │ ├── sun_huc3d26fbb16c0f70400041133778c1446_3118921_700x0_resize_q75_box.jpg │ │ ├── earth_huaae7be4ba70df7325b57cd351ea21ee7_518573_700x0_resize_q75_box.jpg │ │ └── sun_huc3d26fbb16c0f70400041133778c1446_3118921_1000x0_resize_q75_box.jpg └── config.yaml ├── images ├── tn.png └── screenshot.png ├── task_serve.sh ├── archetypes └── default.md ├── netlify.toml ├── theme.toml ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── LICENSE ├── README.md ├── gh-md-toc └── static └── js └── feather.min.js /layouts/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | gh-md-toc linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | exampleSite/public/ 2 | local_git_config.sh 3 | -------------------------------------------------------------------------------- /exampleSite/content/post/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Blog 3 | --- -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/vanilla-bootstrap-hugo-theme/HEAD/images/tn.png -------------------------------------------------------------------------------- /task_serve.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | cd exampleSite 4 | hugo serve --themesDir ../.. 5 | cd .. 6 | -------------------------------------------------------------------------------- /exampleSite/content/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Home 3 | draft: false 4 | --- 5 | 6 | Homepage content goes here. 7 | -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/vanilla-bootstrap-hugo-theme/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 |