├── .gitignore ├── LICENSE.md ├── README.md ├── archetypes └── default.md ├── assets └── css │ ├── normalize.css │ ├── syntax.css │ └── template.css ├── exampleSite ├── config.toml ├── content │ ├── about │ │ ├── _index.md │ │ └── license.md │ ├── blog │ │ ├── _index.md │ │ ├── goisforlovers.md │ │ └── hugoisforlovers.md │ └── work │ │ ├── _index.md │ │ └── manis-hugo-theme.md ├── layouts │ └── .gitkeep └── static │ └── .gitignore ├── i18n ├── de.toml ├── en.toml ├── fr.toml ├── in.toml ├── nn.toml └── ptbr.toml ├── images ├── blue-red.png ├── mockup.jpg ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── list.html │ ├── single.html │ └── terms.html ├── index.html └── partials │ ├── disqus.html │ ├── footer.html │ ├── header.html │ ├── li.html │ ├── meta.html │ ├── metadesc.html │ ├── metatitle.html │ ├── navbar.html │ ├── paginator.html │ ├── related.html │ ├── social.html │ ├── style.html │ ├── title.html │ └── utterances.html ├── static ├── css │ └── dark.css ├── img │ ├── email.svg │ ├── feed.svg │ ├── github.svg │ ├── moon.svg │ ├── next.svg │ ├── prev.svg │ ├── sun.svg │ ├── toup.svg │ ├── twitch.svg │ └── twitter.svg └── js │ └── dark-mode.js └── theme.toml /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /assets/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/assets/css/normalize.css -------------------------------------------------------------------------------- /assets/css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/assets/css/syntax.css -------------------------------------------------------------------------------- /assets/css/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/assets/css/template.css -------------------------------------------------------------------------------- /exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/exampleSite/config.toml -------------------------------------------------------------------------------- /exampleSite/content/about/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/exampleSite/content/about/_index.md -------------------------------------------------------------------------------- /exampleSite/content/about/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/exampleSite/content/about/license.md -------------------------------------------------------------------------------- /exampleSite/content/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/exampleSite/content/blog/_index.md -------------------------------------------------------------------------------- /exampleSite/content/blog/goisforlovers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/exampleSite/content/blog/goisforlovers.md -------------------------------------------------------------------------------- /exampleSite/content/blog/hugoisforlovers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/exampleSite/content/blog/hugoisforlovers.md -------------------------------------------------------------------------------- /exampleSite/content/work/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/exampleSite/content/work/_index.md -------------------------------------------------------------------------------- /exampleSite/content/work/manis-hugo-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/exampleSite/content/work/manis-hugo-theme.md -------------------------------------------------------------------------------- /exampleSite/layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/de.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/i18n/de.toml -------------------------------------------------------------------------------- /i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/i18n/en.toml -------------------------------------------------------------------------------- /i18n/fr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/i18n/fr.toml -------------------------------------------------------------------------------- /i18n/in.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/i18n/in.toml -------------------------------------------------------------------------------- /i18n/nn.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/i18n/nn.toml -------------------------------------------------------------------------------- /i18n/ptbr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/i18n/ptbr.toml -------------------------------------------------------------------------------- /images/blue-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/images/blue-red.png -------------------------------------------------------------------------------- /images/mockup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/images/mockup.jpg -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/_default/terms.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/disqus.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/li.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/li.html -------------------------------------------------------------------------------- /layouts/partials/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/meta.html -------------------------------------------------------------------------------- /layouts/partials/metadesc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/metadesc.html -------------------------------------------------------------------------------- /layouts/partials/metatitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/metatitle.html -------------------------------------------------------------------------------- /layouts/partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/navbar.html -------------------------------------------------------------------------------- /layouts/partials/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/paginator.html -------------------------------------------------------------------------------- /layouts/partials/related.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/related.html -------------------------------------------------------------------------------- /layouts/partials/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/social.html -------------------------------------------------------------------------------- /layouts/partials/style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/style.html -------------------------------------------------------------------------------- /layouts/partials/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/title.html -------------------------------------------------------------------------------- /layouts/partials/utterances.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/layouts/partials/utterances.html -------------------------------------------------------------------------------- /static/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/static/css/dark.css -------------------------------------------------------------------------------- /static/img/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/static/img/email.svg -------------------------------------------------------------------------------- /static/img/feed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/static/img/feed.svg -------------------------------------------------------------------------------- /static/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/static/img/github.svg -------------------------------------------------------------------------------- /static/img/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/static/img/moon.svg -------------------------------------------------------------------------------- /static/img/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/static/img/next.svg -------------------------------------------------------------------------------- /static/img/prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/static/img/prev.svg -------------------------------------------------------------------------------- /static/img/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/static/img/sun.svg -------------------------------------------------------------------------------- /static/img/toup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/static/img/toup.svg -------------------------------------------------------------------------------- /static/img/twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/static/img/twitch.svg -------------------------------------------------------------------------------- /static/img/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/static/img/twitter.svg -------------------------------------------------------------------------------- /static/js/dark-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/static/js/dark-mode.js -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yursan9/manis-hugo-theme/HEAD/theme.toml --------------------------------------------------------------------------------