├── .gitignore ├── LICENSE ├── README.md ├── archetypes └── default.md ├── assets ├── css │ ├── tailwind.css │ └── tailwind │ │ ├── base.css │ │ ├── base.dev.css │ │ ├── tailwind.config.dev.js │ │ └── tailwind.config.js └── js │ └── navbar.js ├── content ├── _index.md ├── about.md ├── authors │ └── nayan-seth │ │ └── _index.md ├── blog │ ├── _index.md │ ├── feb-post-1.md │ ├── feb-post-2.md │ ├── feb-post-3.md │ ├── markdown-template.md │ └── title-test.md └── tags │ └── _index.md ├── hugo.yaml ├── images ├── screenshot.png └── tn.png ├── layouts ├── _default │ ├── baseof.html │ ├── home.html │ ├── list.html │ ├── post.html │ ├── single.html │ └── term.html ├── authors │ ├── list.html │ └── term.html ├── partials │ ├── authors.html │ ├── comments.html │ ├── content │ │ └── svg │ │ │ ├── buymeacoffee.html │ │ │ ├── github.html │ │ │ ├── india.html │ │ │ ├── linkedin.html │ │ │ ├── x.html │ │ │ └── youtube.html │ ├── default_menu.html │ ├── footer_bottom.html │ ├── footer_content.html │ ├── footer_regular.html │ ├── head.html │ ├── head │ │ ├── css.html │ │ └── js.html │ ├── header.html │ ├── home_menu.html │ ├── markdown.html │ ├── menu.html │ ├── pagination.html │ ├── social.html │ ├── tags.html │ ├── taxonomy.html │ └── third_party_js.html ├── shortcodes │ ├── rawhtml.html │ └── svg.html └── tags │ ├── list.html │ └── term.html ├── package.json ├── static └── favicon.ico └── theme.toml /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | 4 | .hugo_build.lock 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/assets/css/tailwind.css -------------------------------------------------------------------------------- /assets/css/tailwind/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/assets/css/tailwind/base.css -------------------------------------------------------------------------------- /assets/css/tailwind/base.dev.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/assets/css/tailwind/base.dev.css -------------------------------------------------------------------------------- /assets/css/tailwind/tailwind.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/assets/css/tailwind/tailwind.config.dev.js -------------------------------------------------------------------------------- /assets/css/tailwind/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/assets/css/tailwind/tailwind.config.js -------------------------------------------------------------------------------- /assets/js/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/assets/js/navbar.js -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/content/about.md -------------------------------------------------------------------------------- /content/authors/nayan-seth/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/content/authors/nayan-seth/_index.md -------------------------------------------------------------------------------- /content/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/content/blog/_index.md -------------------------------------------------------------------------------- /content/blog/feb-post-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/content/blog/feb-post-1.md -------------------------------------------------------------------------------- /content/blog/feb-post-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/content/blog/feb-post-2.md -------------------------------------------------------------------------------- /content/blog/feb-post-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/content/blog/feb-post-3.md -------------------------------------------------------------------------------- /content/blog/markdown-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/content/blog/markdown-template.md -------------------------------------------------------------------------------- /content/blog/title-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/content/blog/title-test.md -------------------------------------------------------------------------------- /content/tags/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/content/tags/_index.md -------------------------------------------------------------------------------- /hugo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/hugo.yaml -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/_default/home.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/_default/post.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/term.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/_default/term.html -------------------------------------------------------------------------------- /layouts/authors/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/authors/list.html -------------------------------------------------------------------------------- /layouts/authors/term.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/authors/term.html -------------------------------------------------------------------------------- /layouts/partials/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/authors.html -------------------------------------------------------------------------------- /layouts/partials/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/comments.html -------------------------------------------------------------------------------- /layouts/partials/content/svg/buymeacoffee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/content/svg/buymeacoffee.html -------------------------------------------------------------------------------- /layouts/partials/content/svg/github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/content/svg/github.html -------------------------------------------------------------------------------- /layouts/partials/content/svg/india.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/content/svg/india.html -------------------------------------------------------------------------------- /layouts/partials/content/svg/linkedin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/content/svg/linkedin.html -------------------------------------------------------------------------------- /layouts/partials/content/svg/x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/content/svg/x.html -------------------------------------------------------------------------------- /layouts/partials/content/svg/youtube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/content/svg/youtube.html -------------------------------------------------------------------------------- /layouts/partials/default_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/default_menu.html -------------------------------------------------------------------------------- /layouts/partials/footer_bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/footer_bottom.html -------------------------------------------------------------------------------- /layouts/partials/footer_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/footer_content.html -------------------------------------------------------------------------------- /layouts/partials/footer_regular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/footer_regular.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /layouts/partials/head/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/head/css.html -------------------------------------------------------------------------------- /layouts/partials/head/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/head/js.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/home_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/home_menu.html -------------------------------------------------------------------------------- /layouts/partials/markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/markdown.html -------------------------------------------------------------------------------- /layouts/partials/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/menu.html -------------------------------------------------------------------------------- /layouts/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/pagination.html -------------------------------------------------------------------------------- /layouts/partials/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/social.html -------------------------------------------------------------------------------- /layouts/partials/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/tags.html -------------------------------------------------------------------------------- /layouts/partials/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/taxonomy.html -------------------------------------------------------------------------------- /layouts/partials/third_party_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/partials/third_party_js.html -------------------------------------------------------------------------------- /layouts/shortcodes/rawhtml.html: -------------------------------------------------------------------------------- 1 | 2 | {{.Inner}} -------------------------------------------------------------------------------- /layouts/shortcodes/svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/shortcodes/svg.html -------------------------------------------------------------------------------- /layouts/tags/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/tags/list.html -------------------------------------------------------------------------------- /layouts/tags/term.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/layouts/tags/term.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/package.json -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbarrack/terminal-hugo-theme/HEAD/theme.toml --------------------------------------------------------------------------------