{{ .Title }}
9 |-
10 |
- By {{ .Params.Author }} 11 |
- 12 | {{ .PublishDate.Format "02 Jan, 2006" }} 13 |
├── layouts ├── 404.html ├── partials │ ├── preloader.html │ ├── page-title.html │ ├── cta.html │ ├── head.html │ ├── style.html │ ├── header.html │ ├── script.html │ └── footer.html ├── _default │ ├── baseof.html │ ├── single.html │ └── list.html ├── terms-conditions │ └── list.html ├── products │ ├── list.html │ └── single.html ├── faq │ └── list.html ├── contact │ └── list.html └── index.html ├── archetypes └── default.md ├── images ├── tn.png └── screenshot.png ├── .markdownlint.json ├── exampleSite ├── assets │ └── images │ │ ├── cta.png │ │ ├── logo.png │ │ ├── about.png │ │ ├── banner.png │ │ ├── marker.png │ │ ├── advantage.png │ │ ├── blog │ │ ├── post-1.jpg │ │ ├── post-2.jpg │ │ ├── post-3.jpg │ │ └── post-4.jpg │ │ ├── cta-overlay.png │ │ ├── video-thumb.jpg │ │ ├── clients │ │ ├── client-1.jpg │ │ ├── client-2.jpg │ │ └── client-3.jpg │ │ ├── material │ │ ├── material-1.png │ │ ├── material-2.png │ │ ├── material-3.png │ │ └── material-4.png │ │ └── products │ │ ├── product-1.png │ │ ├── product-2.png │ │ ├── product-3.png │ │ ├── product-4.png │ │ ├── product-5.png │ │ └── product-6.png ├── i18n │ └── en.yaml ├── content │ ├── blog │ │ ├── _index.md │ │ ├── post-1.md │ │ └── post-2.md │ ├── products │ │ ├── _index.md │ │ ├── taba-cream.md │ │ ├── taba-cream.1.md │ │ ├── taba-cream.2.md │ │ ├── taba-shampoo.1.md │ │ ├── taba-facewash.md │ │ ├── taba-shampoo.2.md │ │ ├── taba-shampoo.md │ │ ├── taba-facewash.1.md │ │ └── taba-facewash.2.md │ ├── contact │ │ └── _index.md │ ├── faq │ │ └── _index.md │ └── terms-conditions │ │ └── _index.md ├── go.mod ├── config │ └── _default │ │ ├── module.toml │ │ ├── menus.en.toml │ │ └── hugo.toml └── data │ ├── contact.yml │ ├── faq.yml │ └── homepage.yml ├── .vscode └── extensions.json ├── static ├── plugins │ ├── themify-icons │ │ ├── fonts │ │ │ ├── themify.eot │ │ │ ├── themify.ttf │ │ │ └── themify.woff │ │ └── themify-icons.css │ ├── slick │ │ ├── slick.css │ │ └── slick.min.js │ └── google-map │ │ └── gmap.js ├── sitepins-manifest.json └── .htaccess ├── netlify.toml ├── vercel.json ├── .gitignore ├── .editorconfig ├── .sitepins ├── config.json └── schema │ ├── blog.json │ └── products.json ├── assets ├── scss │ ├── _variables.scss │ ├── _mixins.scss │ ├── style.scss │ ├── _typography.scss │ ├── _buttons.scss │ ├── templates │ │ ├── _navigation.scss │ │ └── _homepage.scss │ └── _common.scss └── js │ └── script.js ├── scripts ├── clearModules.js ├── projectSetup.js └── themeSetup.js ├── theme.toml ├── LICENSE ├── package.json ├── .gitlab-ci.yml ├── .jshintrc ├── vercel-build.sh ├── .github └── workflows │ └── main.yml └── README.md /layouts/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/images/tn.png -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "MD033": false, 3 | "MD034": false, 4 | "MD013": false 5 | } 6 | -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /exampleSite/assets/images/cta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/cta.png -------------------------------------------------------------------------------- /exampleSite/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/logo.png -------------------------------------------------------------------------------- /exampleSite/assets/images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/about.png -------------------------------------------------------------------------------- /exampleSite/assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/banner.png -------------------------------------------------------------------------------- /exampleSite/assets/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/marker.png -------------------------------------------------------------------------------- /exampleSite/assets/images/advantage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/advantage.png -------------------------------------------------------------------------------- /exampleSite/assets/images/blog/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/blog/post-1.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/blog/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/blog/post-2.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/blog/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/blog/post-3.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/blog/post-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/blog/post-4.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/cta-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/cta-overlay.png -------------------------------------------------------------------------------- /exampleSite/assets/images/video-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/video-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/i18n/en.yaml: -------------------------------------------------------------------------------- 1 | - id: important_link 2 | translation: Important Links 3 | - id: connect_us 4 | translation: Connect With Us 5 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "budparr.language-hugo-vscode", 4 | "tamasfe.even-better-toml" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /exampleSite/assets/images/clients/client-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/clients/client-1.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/clients/client-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/clients/client-2.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/clients/client-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/clients/client-3.jpg -------------------------------------------------------------------------------- /static/plugins/themify-icons/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/static/plugins/themify-icons/fonts/themify.eot -------------------------------------------------------------------------------- /static/plugins/themify-icons/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/static/plugins/themify-icons/fonts/themify.ttf -------------------------------------------------------------------------------- /exampleSite/assets/images/material/material-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/material/material-1.png -------------------------------------------------------------------------------- /exampleSite/assets/images/material/material-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/material/material-2.png -------------------------------------------------------------------------------- /exampleSite/assets/images/material/material-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/material/material-3.png -------------------------------------------------------------------------------- /exampleSite/assets/images/material/material-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/material/material-4.png -------------------------------------------------------------------------------- /exampleSite/assets/images/products/product-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/products/product-1.png -------------------------------------------------------------------------------- /exampleSite/assets/images/products/product-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/products/product-2.png -------------------------------------------------------------------------------- /exampleSite/assets/images/products/product-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/products/product-3.png -------------------------------------------------------------------------------- /exampleSite/assets/images/products/product-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/products/product-4.png -------------------------------------------------------------------------------- /exampleSite/assets/images/products/product-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/products/product-5.png -------------------------------------------------------------------------------- /exampleSite/assets/images/products/product-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/exampleSite/assets/images/products/product-6.png -------------------------------------------------------------------------------- /static/plugins/themify-icons/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/hargo-hugo/HEAD/static/plugins/themify-icons/fonts/themify.woff -------------------------------------------------------------------------------- /exampleSite/content/blog/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Blog" 3 | date: 2019-10-17T11:22:16+06:00 4 | draft: false 5 | description : "this is a meta description" 6 | --- -------------------------------------------------------------------------------- /exampleSite/content/products/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Products" 3 | date: 2019-10-17T11:22:16+06:00 4 | draft: false 5 | description : "this is a meta description" 6 | --- -------------------------------------------------------------------------------- /exampleSite/go.mod: -------------------------------------------------------------------------------- 1 | module gethugothemes.com 2 | 3 | go 1.23.1 4 | 5 | require github.com/gethugothemes/hugo-modules/images v0.0.0-20250112030311-a0de82520a5a // indirect 6 | -------------------------------------------------------------------------------- /exampleSite/config/_default/module.toml: -------------------------------------------------------------------------------- 1 | [hugoVersion] 2 | extended = true 3 | min = "0.147.2" 4 | 5 | 6 | [[imports]] 7 | path = "github.com/gethugothemes/hugo-modules/images" 8 | -------------------------------------------------------------------------------- /exampleSite/content/contact/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Contact" 3 | date: 2019-10-17T11:22:16+06:00 4 | draft: false 5 | description : "this is a meta description" 6 | --- 7 | 8 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | publish = "public" 3 | command = "yarn project-setup && yarn build" 4 | 5 | [build.environment] 6 | HUGO_VERSION = "0.147.2" 7 | GO_VERSION = "1.24.3" 8 | HUGO_BASEURL = "/" -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "builds": [ 3 | { 4 | "src": "vercel-build.sh", 5 | "use": "@vercel/static-build", 6 | "config": { 7 | "distDir": "public" 8 | } 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | .DS_Store 3 | .dist 4 | .tmp 5 | .lock 6 | .sass-cache 7 | npm-debug.log 8 | node_modules 9 | builds 10 | package-lock.json 11 | public 12 | resources 13 | .hugo_build.lock 14 | jsconfig.json 15 | hugo_stats.json 16 | go.sum 17 | yarn.lock -------------------------------------------------------------------------------- /static/sitepins-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sitepins CMS", 3 | "description": "Git-based CMS detection file", 4 | "cms": "Sitepins", 5 | "generator": "nextjs", 6 | "html": "" | safeHTML }} 3 |
{{ .content | markdownify }}
11 | {{ with .button }} 12 | {{ .label }} 13 | {{ end }} 14 |{{ .Summary }}
21 | Read More 22 |{{ .Params.Description }}
19 |{{ .content | markdownify }}
13 | {{ end }} 14 | 15 |{{ .Params.ShortDescription | markdownify }}
32 | 37 |Hargo is a modern, sleek and fresh online store theme for Hugo.
3 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
23 |
28 |
29 |
{{ .content | markdownify }}
12 | {{ if .button.enable }} 13 | {{ with .button }} 14 | {{ .label }} 15 | {{ end }} 16 | {{ end }} 17 | 18 | {{ if .video.enable }} 19 | {{ with .video }} 20 | Watch Video 23 | {{ end }} 24 | 25 | 34 | {{ end }} 35 |{{ .content | markdownify }}
58 |{{ .subtitle | markdownify }}
79 |{{ .content | markdownify }}
89 |{{ .subtitle | markdownify }}
109 |{{ .Params.Description }}
180 |