├── .gitattributes ├── ExampleSite ├── .gitignore ├── config │ └── _default │ │ ├── hugo.toml │ │ ├── menus.toml │ │ └── params.toml ├── content │ ├── _index.md │ ├── categories │ │ ├── _index.md │ │ ├── css │ │ │ └── _index.md │ │ ├── javascript │ │ │ └── _index.md │ │ └── uncategories │ │ │ └── _index.md │ ├── posts │ │ ├── _index.md │ │ └── markdown-cheat-sheet │ │ │ ├── cat.jpg │ │ │ └── index.md │ └── tags │ │ └── _index.md ├── i18n │ ├── en.toml │ └── pt.toml └── package.json ├── LICENSE ├── README.md ├── archetypes ├── default.md └── posts.md ├── assets ├── css │ └── tailwind.css ├── icons │ ├── arrow-left.svg │ ├── arrow-right.svg │ ├── favicon.ico │ ├── moon.svg │ └── sun.svg └── img │ └── profile-picture.jpg ├── config ├── postcss.config.js └── tailwind.config.js ├── cover.png ├── images ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── baseof.html │ ├── list.html │ └── single.html ├── index.html ├── partials │ ├── footer │ │ ├── copyright.html │ │ ├── index.html │ │ └── social.html │ ├── head │ │ ├── index.html │ │ ├── meta.html │ │ └── styles.html │ ├── header │ │ ├── avatar.html │ │ ├── index.html │ │ ├── nav.html │ │ ├── theme-button.html │ │ └── title.html │ ├── list │ │ ├── default.html │ │ └── pagination.html │ ├── single │ │ ├── comments │ │ │ ├── disqus.html │ │ │ ├── giscus.html │ │ │ └── index.html │ │ └── table-of-contents.html │ └── utils │ │ └── icon.html ├── robots.txt ├── shortcodes │ ├── alert.html │ ├── img.html │ └── task-list.html └── taxonomies │ └── home.html ├── static └── fonts │ ├── inter-v12-latin-100.woff │ ├── inter-v12-latin-100.woff2 │ ├── inter-v12-latin-200.woff │ ├── inter-v12-latin-200.woff2 │ ├── inter-v12-latin-300.woff │ ├── inter-v12-latin-300.woff2 │ ├── inter-v12-latin-500.woff │ ├── inter-v12-latin-500.woff2 │ ├── inter-v12-latin-600.woff │ ├── inter-v12-latin-600.woff2 │ ├── inter-v12-latin-700.woff │ ├── inter-v12-latin-700.woff2 │ ├── inter-v12-latin-800.woff │ ├── inter-v12-latin-800.woff2 │ ├── inter-v12-latin-900.woff │ ├── inter-v12-latin-900.woff2 │ ├── inter-v12-latin-regular.woff │ └── inter-v12-latin-regular.woff2 └── theme.toml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/.gitattributes -------------------------------------------------------------------------------- /ExampleSite/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .env.build 3 | node_modules 4 | public -------------------------------------------------------------------------------- /ExampleSite/config/_default/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/ExampleSite/config/_default/hugo.toml -------------------------------------------------------------------------------- /ExampleSite/config/_default/menus.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/ExampleSite/config/_default/menus.toml -------------------------------------------------------------------------------- /ExampleSite/config/_default/params.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/ExampleSite/config/_default/params.toml -------------------------------------------------------------------------------- /ExampleSite/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/ExampleSite/content/_index.md -------------------------------------------------------------------------------- /ExampleSite/content/categories/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/ExampleSite/content/categories/_index.md -------------------------------------------------------------------------------- /ExampleSite/content/categories/css/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "CSS" 3 | draft: false 4 | --- 5 | -------------------------------------------------------------------------------- /ExampleSite/content/categories/javascript/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/ExampleSite/content/categories/javascript/_index.md -------------------------------------------------------------------------------- /ExampleSite/content/categories/uncategories/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Uncategories" 3 | draft: false 4 | --- 5 | Description -------------------------------------------------------------------------------- /ExampleSite/content/posts/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/ExampleSite/content/posts/_index.md -------------------------------------------------------------------------------- /ExampleSite/content/posts/markdown-cheat-sheet/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/ExampleSite/content/posts/markdown-cheat-sheet/cat.jpg -------------------------------------------------------------------------------- /ExampleSite/content/posts/markdown-cheat-sheet/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/ExampleSite/content/posts/markdown-cheat-sheet/index.md -------------------------------------------------------------------------------- /ExampleSite/content/tags/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/ExampleSite/content/tags/_index.md -------------------------------------------------------------------------------- /ExampleSite/i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/ExampleSite/i18n/en.toml -------------------------------------------------------------------------------- /ExampleSite/i18n/pt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/ExampleSite/i18n/pt.toml -------------------------------------------------------------------------------- /ExampleSite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/ExampleSite/package.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /archetypes/posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/archetypes/posts.md -------------------------------------------------------------------------------- /assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/assets/css/tailwind.css -------------------------------------------------------------------------------- /assets/icons/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/assets/icons/arrow-left.svg -------------------------------------------------------------------------------- /assets/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/assets/icons/arrow-right.svg -------------------------------------------------------------------------------- /assets/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/assets/icons/favicon.ico -------------------------------------------------------------------------------- /assets/icons/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/assets/icons/moon.svg -------------------------------------------------------------------------------- /assets/icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/assets/icons/sun.svg -------------------------------------------------------------------------------- /assets/img/profile-picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/assets/img/profile-picture.jpg -------------------------------------------------------------------------------- /config/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/config/postcss.config.js -------------------------------------------------------------------------------- /config/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/config/tailwind.config.js -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/cover.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/footer/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/footer/copyright.html -------------------------------------------------------------------------------- /layouts/partials/footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/footer/index.html -------------------------------------------------------------------------------- /layouts/partials/footer/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/footer/social.html -------------------------------------------------------------------------------- /layouts/partials/head/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/head/index.html -------------------------------------------------------------------------------- /layouts/partials/head/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/head/meta.html -------------------------------------------------------------------------------- /layouts/partials/head/styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/head/styles.html -------------------------------------------------------------------------------- /layouts/partials/header/avatar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/header/avatar.html -------------------------------------------------------------------------------- /layouts/partials/header/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/header/index.html -------------------------------------------------------------------------------- /layouts/partials/header/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/header/nav.html -------------------------------------------------------------------------------- /layouts/partials/header/theme-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/header/theme-button.html -------------------------------------------------------------------------------- /layouts/partials/header/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/header/title.html -------------------------------------------------------------------------------- /layouts/partials/list/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/list/default.html -------------------------------------------------------------------------------- /layouts/partials/list/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/list/pagination.html -------------------------------------------------------------------------------- /layouts/partials/single/comments/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/single/comments/disqus.html -------------------------------------------------------------------------------- /layouts/partials/single/comments/giscus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/single/comments/giscus.html -------------------------------------------------------------------------------- /layouts/partials/single/comments/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/single/comments/index.html -------------------------------------------------------------------------------- /layouts/partials/single/table-of-contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/single/table-of-contents.html -------------------------------------------------------------------------------- /layouts/partials/utils/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/partials/utils/icon.html -------------------------------------------------------------------------------- /layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/robots.txt -------------------------------------------------------------------------------- /layouts/shortcodes/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/shortcodes/alert.html -------------------------------------------------------------------------------- /layouts/shortcodes/img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/shortcodes/img.html -------------------------------------------------------------------------------- /layouts/shortcodes/task-list.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layouts/taxonomies/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/layouts/taxonomies/home.html -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-100.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-100.woff -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-100.woff2 -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-200.woff -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-200.woff2 -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-300.woff -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-300.woff2 -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-500.woff -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-500.woff2 -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-600.woff -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-600.woff2 -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-700.woff -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-700.woff2 -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-800.woff -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-800.woff2 -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-900.woff -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-900.woff2 -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-regular.woff -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/static/fonts/inter-v12-latin-regular.woff2 -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixentric/Lowkey-Hugo-Theme/HEAD/theme.toml --------------------------------------------------------------------------------