├── .browserslistrc ├── .eslintrc.yml ├── .github └── FUNDING.yml ├── .gitignore ├── .hugo_build.lock ├── .prettierignore ├── .prettierrc ├── .release-it.json ├── .sass-lint.yml ├── LICENSE ├── README.md ├── assets └── sass │ ├── abstracts │ └── _variables-site.sass │ └── main.sass ├── config ├── _default │ ├── hugo.yaml │ ├── languages.yaml │ ├── module.yaml │ ├── params.yaml │ ├── permalinks.yaml │ ├── privacy.yaml │ ├── services.yaml │ ├── social.yaml │ └── taxonomies.yaml ├── development │ └── hugo.yaml ├── production │ ├── hugo.yaml │ └── services.yml └── staging │ └── hugo.yaml ├── content ├── _index.md ├── contact │ └── _index.md ├── legal-mentions │ └── _index.md ├── privacy-policy │ └── _index.md └── sitemap │ └── _index.md ├── data ├── banner.yml ├── menu │ ├── legal.yml │ ├── primary.yml │ ├── secondary.yml │ └── social.yml └── seo.yml ├── go.mod ├── go.sum ├── hugo_stats.json ├── netlify.toml ├── package.json ├── postcss.config.js ├── scripts ├── build-config-pagescms.js └── build-icons-bootstrap.js ├── static ├── .keep ├── _headers └── assets │ └── images │ └── share.png └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | **/*.html -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | "@hugolify/prettier-config" 2 | -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/.release-it.json -------------------------------------------------------------------------------- /.sass-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/.sass-lint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/README.md -------------------------------------------------------------------------------- /assets/sass/abstracts/_variables-site.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/assets/sass/abstracts/_variables-site.sass -------------------------------------------------------------------------------- /assets/sass/main.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/assets/sass/main.sass -------------------------------------------------------------------------------- /config/_default/hugo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/config/_default/hugo.yaml -------------------------------------------------------------------------------- /config/_default/languages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/config/_default/languages.yaml -------------------------------------------------------------------------------- /config/_default/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/config/_default/module.yaml -------------------------------------------------------------------------------- /config/_default/params.yaml: -------------------------------------------------------------------------------- 1 | _merge: deep 2 | -------------------------------------------------------------------------------- /config/_default/permalinks.yaml: -------------------------------------------------------------------------------- 1 | _merge: deep 2 | -------------------------------------------------------------------------------- /config/_default/privacy.yaml: -------------------------------------------------------------------------------- 1 | _merge: deep 2 | -------------------------------------------------------------------------------- /config/_default/services.yaml: -------------------------------------------------------------------------------- 1 | _merge: deep 2 | -------------------------------------------------------------------------------- /config/_default/social.yaml: -------------------------------------------------------------------------------- 1 | _merge: deep 2 | twitter: hugolify 3 | -------------------------------------------------------------------------------- /config/_default/taxonomies.yaml: -------------------------------------------------------------------------------- 1 | _merge: deep 2 | -------------------------------------------------------------------------------- /config/development/hugo.yaml: -------------------------------------------------------------------------------- 1 | baseURL: / 2 | -------------------------------------------------------------------------------- /config/production/hugo.yaml: -------------------------------------------------------------------------------- 1 | baseURL: / 2 | -------------------------------------------------------------------------------- /config/production/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/config/production/services.yml -------------------------------------------------------------------------------- /config/staging/hugo.yaml: -------------------------------------------------------------------------------- 1 | baseURL: / 2 | -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | isIndex: true 3 | draft: false 4 | title: Home 5 | --- 6 | -------------------------------------------------------------------------------- /content/contact/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/content/contact/_index.md -------------------------------------------------------------------------------- /content/legal-mentions/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/content/legal-mentions/_index.md -------------------------------------------------------------------------------- /content/privacy-policy/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/content/privacy-policy/_index.md -------------------------------------------------------------------------------- /content/sitemap/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/content/sitemap/_index.md -------------------------------------------------------------------------------- /data/banner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/data/banner.yml -------------------------------------------------------------------------------- /data/menu/legal.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/menu/primary.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/menu/secondary.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/menu/social.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/seo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/data/seo.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/go.sum -------------------------------------------------------------------------------- /hugo_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/hugo_stats.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /scripts/build-config-pagescms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/scripts/build-config-pagescms.js -------------------------------------------------------------------------------- /scripts/build-icons-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/scripts/build-icons-bootstrap.js -------------------------------------------------------------------------------- /static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/static/_headers -------------------------------------------------------------------------------- /static/assets/images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/static/assets/images/share.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugolify/hugolify-template/HEAD/yarn.lock --------------------------------------------------------------------------------