├── .prettierignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── archetypes ├── blog.md ├── default.md └── project.md ├── exampleSite ├── config.toml └── content │ ├── about.md │ ├── post │ ├── creating-a-new-theme.md │ ├── goisforlovers.md │ ├── hugoisforlovers.md │ ├── migrate-from-jekyll.md │ ├── post-with-featured-image.md │ ├── the-figure-shortcode.md │ └── typography.md │ └── project │ └── hugo.md ├── images ├── screenshot.png ├── series.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── baseof.html │ ├── list.html │ ├── single.html │ └── terms.html ├── index.html ├── partials │ ├── footer.html │ ├── head.html │ ├── head_includes.html │ ├── header.html │ ├── meta.html │ └── scripts.html ├── post │ └── single.html ├── project │ └── single.html ├── section │ └── project.html └── taxonomy │ ├── category.html │ ├── series.html │ └── tag.html ├── netlify.toml ├── static └── css │ └── style.css └── theme.toml /.prettierignore: -------------------------------------------------------------------------------- 1 | */*.html -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | disableLanguages: ["html"] 3 | }; 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/archetypes/blog.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /archetypes/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/archetypes/project.md -------------------------------------------------------------------------------- /exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/exampleSite/config.toml -------------------------------------------------------------------------------- /exampleSite/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/exampleSite/content/about.md -------------------------------------------------------------------------------- /exampleSite/content/post/creating-a-new-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/exampleSite/content/post/creating-a-new-theme.md -------------------------------------------------------------------------------- /exampleSite/content/post/goisforlovers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/exampleSite/content/post/goisforlovers.md -------------------------------------------------------------------------------- /exampleSite/content/post/hugoisforlovers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/exampleSite/content/post/hugoisforlovers.md -------------------------------------------------------------------------------- /exampleSite/content/post/migrate-from-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/exampleSite/content/post/migrate-from-jekyll.md -------------------------------------------------------------------------------- /exampleSite/content/post/post-with-featured-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/exampleSite/content/post/post-with-featured-image.md -------------------------------------------------------------------------------- /exampleSite/content/post/the-figure-shortcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/exampleSite/content/post/the-figure-shortcode.md -------------------------------------------------------------------------------- /exampleSite/content/post/typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/exampleSite/content/post/typography.md -------------------------------------------------------------------------------- /exampleSite/content/project/hugo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/exampleSite/content/project/hugo.md -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/images/series.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/_default/terms.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/head_includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/partials/head_includes.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/partials/meta.html -------------------------------------------------------------------------------- /layouts/partials/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/partials/scripts.html -------------------------------------------------------------------------------- /layouts/post/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/post/single.html -------------------------------------------------------------------------------- /layouts/project/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/project/single.html -------------------------------------------------------------------------------- /layouts/section/project.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/taxonomy/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/taxonomy/category.html -------------------------------------------------------------------------------- /layouts/taxonomy/series.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/taxonomy/series.html -------------------------------------------------------------------------------- /layouts/taxonomy/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/layouts/taxonomy/tag.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/netlify.toml -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/static/css/style.css -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegerts/hugo-theme-basic/HEAD/theme.toml --------------------------------------------------------------------------------