├── .babelrc ├── .dependabot └── config.yml ├── .eslintrc.yml ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .nvmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── netlify.toml ├── package.json ├── postcss.config.js ├── renovate.json ├── site ├── .hugo_build.lock ├── config.toml ├── content │ ├── .keep │ └── tech.md ├── data │ └── .keep ├── layouts │ ├── 404.html │ ├── _default │ │ ├── baseof.html │ │ └── single.html │ ├── index.html │ └── partials │ │ ├── footer.html │ │ └── header.html └── static │ └── .keep ├── src ├── css │ ├── imports │ │ └── reset.css │ └── main.css ├── fonts │ └── .keep └── index.js ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/.babelrc -------------------------------------------------------------------------------- /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | site/data/webpack.json 4 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16.13.1 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/README.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/postcss.config.js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/renovate.json -------------------------------------------------------------------------------- /site/.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/site/config.toml -------------------------------------------------------------------------------- /site/content/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/content/tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/site/content/tech.md -------------------------------------------------------------------------------- /site/data/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/site/layouts/404.html -------------------------------------------------------------------------------- /site/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/site/layouts/_default/baseof.html -------------------------------------------------------------------------------- /site/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/site/layouts/_default/single.html -------------------------------------------------------------------------------- /site/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/site/layouts/index.html -------------------------------------------------------------------------------- /site/layouts/partials/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/layouts/partials/header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/imports/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/src/css/imports/reset.css -------------------------------------------------------------------------------- /src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/src/css/main.css -------------------------------------------------------------------------------- /src/fonts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/webpack.common.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/victor-hugo/HEAD/webpack.prod.js --------------------------------------------------------------------------------