├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitlab-ci.yml ├── .jshintrc ├── .markdownlint.json ├── .prettierrc ├── .sitepins └── config.json ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── archetypes └── default.md ├── assets ├── js │ ├── bootstrap.js │ └── script.js ├── plugins │ ├── jquery │ │ └── jquery.js │ └── webfont │ │ └── webfont-loader-2.js └── scss │ ├── _buttons.scss │ ├── _common.scss │ ├── _mixins.scss │ ├── _typography.scss │ ├── custom.scss │ ├── style.scss │ └── templates │ ├── _bootstrap.scss │ ├── _main.scss │ └── _navigation.scss ├── exampleSite ├── assets │ └── images │ │ ├── banner.jpg │ │ ├── favicon.png │ │ └── gallery │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ ├── 03.jpg │ │ ├── 04.jpg │ │ ├── 05.jpg │ │ └── 06.jpg ├── config │ └── _default │ │ ├── languages.toml │ │ ├── menus.en.toml │ │ ├── menus.fr.toml │ │ ├── module.toml │ │ └── params.toml ├── content │ ├── _index.en.md │ ├── _index.fr.md │ ├── billing-pricing │ │ ├── _index.en.md │ │ ├── _index.fr.md │ │ ├── bill │ │ │ ├── img-1.jpg │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ │ ├── manage │ │ │ ├── img-1.jpg │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ │ ├── ownership │ │ │ ├── img-1.jpg │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ │ ├── payment │ │ │ ├── img-1.jpg │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ │ └── profile │ │ │ ├── img-1.jpg │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ ├── features │ │ ├── _index.en.md │ │ ├── _index.fr.md │ │ ├── linux │ │ │ ├── img-1.jpg │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ │ ├── mac │ │ │ ├── img-1.jpg │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ │ ├── routing │ │ │ ├── img-1.jpg │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ │ ├── ubuntu │ │ │ ├── img-1.jpg │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ │ └── windows │ │ │ ├── img-1.jpg │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ ├── installation │ │ ├── _index.en.md │ │ ├── _index.fr.md │ │ ├── configuration │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ │ ├── customization │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ │ ├── elements │ │ │ ├── img-1.jpg │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ │ ├── install │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ │ └── requirments │ │ │ ├── hugo.jpg │ │ │ ├── index.en.md │ │ │ └── index.fr.md │ └── pages │ │ ├── _index.en.md │ │ ├── _index.fr.md │ │ ├── contact.en.md │ │ ├── contact.fr.md │ │ ├── faq.en.md │ │ └── faq.fr.md ├── go.mod ├── hugo.toml ├── i18n │ ├── en.yaml │ └── fr.yaml └── postcss.config.js ├── images ├── screenshot.png └── tn.png ├── layouts ├── _default │ ├── baseof.html │ ├── contact.html │ ├── faq.html │ ├── list.html │ └── single.html ├── index.html └── partials │ ├── default.html │ └── essentials │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── script.html │ └── style.html ├── netlify.toml ├── package.json ├── scripts ├── clearModules.js ├── projectSetup.js └── themeSetup.js ├── static └── sitepins-manifest.json ├── vercel-build.sh └── vercel.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/.jshintrc -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/.prettierrc -------------------------------------------------------------------------------- /.sitepins/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/.sitepins/config.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/assets/js/bootstrap.js -------------------------------------------------------------------------------- /assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/assets/js/script.js -------------------------------------------------------------------------------- /assets/plugins/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/assets/plugins/jquery/jquery.js -------------------------------------------------------------------------------- /assets/plugins/webfont/webfont-loader-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/assets/plugins/webfont/webfont-loader-2.js -------------------------------------------------------------------------------- /assets/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/assets/scss/_buttons.scss -------------------------------------------------------------------------------- /assets/scss/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/assets/scss/_common.scss -------------------------------------------------------------------------------- /assets/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/assets/scss/_mixins.scss -------------------------------------------------------------------------------- /assets/scss/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/assets/scss/_typography.scss -------------------------------------------------------------------------------- /assets/scss/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/assets/scss/custom.scss -------------------------------------------------------------------------------- /assets/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/assets/scss/style.scss -------------------------------------------------------------------------------- /assets/scss/templates/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/assets/scss/templates/_bootstrap.scss -------------------------------------------------------------------------------- /assets/scss/templates/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/assets/scss/templates/_main.scss -------------------------------------------------------------------------------- /assets/scss/templates/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/assets/scss/templates/_navigation.scss -------------------------------------------------------------------------------- /exampleSite/assets/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/assets/images/banner.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/assets/images/favicon.png -------------------------------------------------------------------------------- /exampleSite/assets/images/gallery/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/assets/images/gallery/01.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/gallery/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/assets/images/gallery/02.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/gallery/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/assets/images/gallery/03.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/gallery/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/assets/images/gallery/04.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/gallery/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/assets/images/gallery/05.jpg -------------------------------------------------------------------------------- /exampleSite/assets/images/gallery/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/assets/images/gallery/06.jpg -------------------------------------------------------------------------------- /exampleSite/config/_default/languages.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/config/_default/languages.toml -------------------------------------------------------------------------------- /exampleSite/config/_default/menus.en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/config/_default/menus.en.toml -------------------------------------------------------------------------------- /exampleSite/config/_default/menus.fr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/config/_default/menus.fr.toml -------------------------------------------------------------------------------- /exampleSite/config/_default/module.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/config/_default/module.toml -------------------------------------------------------------------------------- /exampleSite/config/_default/params.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/config/_default/params.toml -------------------------------------------------------------------------------- /exampleSite/content/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/_index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/_index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/bill/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/bill/img-1.jpg -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/bill/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/bill/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/bill/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/bill/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/manage/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/manage/img-1.jpg -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/manage/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/manage/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/manage/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/manage/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/ownership/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/ownership/img-1.jpg -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/ownership/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/ownership/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/ownership/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/ownership/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/payment/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/payment/img-1.jpg -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/payment/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/payment/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/payment/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/payment/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/profile/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/profile/img-1.jpg -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/profile/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/profile/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/billing-pricing/profile/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/billing-pricing/profile/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/features/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/features/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/_index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/features/linux/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/linux/img-1.jpg -------------------------------------------------------------------------------- /exampleSite/content/features/linux/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/linux/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/features/linux/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/linux/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/features/mac/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/mac/img-1.jpg -------------------------------------------------------------------------------- /exampleSite/content/features/mac/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/mac/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/features/mac/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/mac/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/features/routing/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/routing/img-1.jpg -------------------------------------------------------------------------------- /exampleSite/content/features/routing/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/routing/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/features/routing/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/routing/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/features/ubuntu/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/ubuntu/img-1.jpg -------------------------------------------------------------------------------- /exampleSite/content/features/ubuntu/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/ubuntu/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/features/ubuntu/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/ubuntu/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/features/windows/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/windows/img-1.jpg -------------------------------------------------------------------------------- /exampleSite/content/features/windows/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/windows/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/features/windows/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/features/windows/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/installation/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/installation/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/_index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/installation/configuration/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/configuration/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/installation/configuration/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/configuration/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/installation/customization/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/customization/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/installation/customization/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/customization/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/installation/elements/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/elements/img-1.jpg -------------------------------------------------------------------------------- /exampleSite/content/installation/elements/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/elements/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/installation/elements/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/elements/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/installation/install/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/install/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/installation/install/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/install/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/installation/requirments/hugo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/requirments/hugo.jpg -------------------------------------------------------------------------------- /exampleSite/content/installation/requirments/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/requirments/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/installation/requirments/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/installation/requirments/index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/pages/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/pages/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/pages/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/pages/_index.fr.md -------------------------------------------------------------------------------- /exampleSite/content/pages/contact.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/pages/contact.en.md -------------------------------------------------------------------------------- /exampleSite/content/pages/contact.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/pages/contact.fr.md -------------------------------------------------------------------------------- /exampleSite/content/pages/faq.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/pages/faq.en.md -------------------------------------------------------------------------------- /exampleSite/content/pages/faq.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/content/pages/faq.fr.md -------------------------------------------------------------------------------- /exampleSite/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/go.mod -------------------------------------------------------------------------------- /exampleSite/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/hugo.toml -------------------------------------------------------------------------------- /exampleSite/i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/i18n/en.yaml -------------------------------------------------------------------------------- /exampleSite/i18n/fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/i18n/fr.yaml -------------------------------------------------------------------------------- /exampleSite/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/exampleSite/postcss.config.js -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/layouts/_default/contact.html -------------------------------------------------------------------------------- /layouts/_default/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/layouts/_default/faq.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/layouts/partials/default.html -------------------------------------------------------------------------------- /layouts/partials/essentials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/layouts/partials/essentials/footer.html -------------------------------------------------------------------------------- /layouts/partials/essentials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/layouts/partials/essentials/head.html -------------------------------------------------------------------------------- /layouts/partials/essentials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/layouts/partials/essentials/header.html -------------------------------------------------------------------------------- /layouts/partials/essentials/script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/layouts/partials/essentials/script.html -------------------------------------------------------------------------------- /layouts/partials/essentials/style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/layouts/partials/essentials/style.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/package.json -------------------------------------------------------------------------------- /scripts/clearModules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/scripts/clearModules.js -------------------------------------------------------------------------------- /scripts/projectSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/scripts/projectSetup.js -------------------------------------------------------------------------------- /scripts/themeSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/scripts/themeSetup.js -------------------------------------------------------------------------------- /static/sitepins-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/static/sitepins-manifest.json -------------------------------------------------------------------------------- /vercel-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/vercel-build.sh -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethugothemes/dot-hugo/HEAD/vercel.json --------------------------------------------------------------------------------