diff --git a/site/config.toml b/site/config.toml index 149e86a..c035fc5 100644 --- a/site/config.toml +++ b/site/config.toml @@ -1,3 +1,9 @@ baseurl = "/" languageCode = "en-us" -title = "My New Hugo Site" +languageLang = "en" +title = "My new Victor-Hugo site" + +# RSS, categories and tags disabled for an easy start +# See configuration options for more details: +# https://gohugo.io/getting-started/configuration/#toml-configuration +disableKinds = ["RSS", "taxonomy", "taxonomyTerm"] diff --git a/site/layouts/index.html b/site/layouts/index.html index 225c92b..40273f0 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -2,4 +2,8 @@

Hugo with Gulp, PostCSS and Webpack

+

+ Hooray 🎉 - you've built this with Victor-Hugo! +

+ {{ partial "footer" . }} diff --git a/site/layouts/partials/footer.html b/site/layouts/partials/footer.html index 310a610..e31af93 100644 --- a/site/layouts/partials/footer.html +++ b/site/layouts/partials/footer.html @@ -1,3 +1,4 @@ - - + + + diff --git a/site/layouts/partials/header.html b/site/layouts/partials/header.html index c84dc6e..ab9551c 100644 --- a/site/layouts/partials/header.html +++ b/site/layouts/partials/header.html @@ -1,7 +1,9 @@ - + - Hugo with Gulp and Webpack - + + + {{ $.Site.Title }} + diff --git a/src/css/imports/reset.css b/src/css/imports/reset.css index 74d7658..8ef9133 100644 --- a/src/css/imports/reset.css +++ b/src/css/imports/reset.css @@ -1,3 +1,9 @@ -body { - font-size: 16px; +/* + Define your resets here or use something like Normalize.css if you like + */ + +html, +body{ + margin: 0; + padding: 0; } diff --git a/src/css/main.css b/src/css/main.css index ebf0749..2013e7a 100644 --- a/src/css/main.css +++ b/src/css/main.css @@ -1 +1,14 @@ +/* + You can use import statements to include partials: + */ @import "imports/reset.css"; + + +/* + Or add your statements here: + */ +body{ + font-family: sans-serif; + font-size: 1em; + text-align: center; +} diff --git a/src/js/app.js b/src/js/app.js index 6fbb399..76d8278 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -1 +1,4 @@ // JS Goes here - ES6 supported + +// Say hello +console.log("🦊 Hello! Edit me in src/js/app.js");