diff --git a/assets/sass/components/_global.scss b/assets/sass/components/_global.scss index afba5f78..22ef8489 100644 --- a/assets/sass/components/_global.scss +++ b/assets/sass/components/_global.scss @@ -39,7 +39,7 @@ main { } } -section.page { +div.layout { max-width: $max-width; margin: 0 auto; padding-left: 1.5em; diff --git a/assets/sass/pages/_etc.scss b/assets/sass/pages/_etc.scss index f5573647..161f4855 100644 --- a/assets/sass/pages/_etc.scss +++ b/assets/sass/pages/_etc.scss @@ -1,7 +1,7 @@ @charset "UTF-8"; // Video Styles -section#etc { +div#layout--etc { padding-top: 1.5em; padding-bottom: 1.5em; @@ -18,7 +18,7 @@ section#etc { // Responsive @mixin responsive--etc() { - section#etc { + div#layout--etc { padding: 1.25em 1.1em; h1 { diff --git a/assets/sass/pages/_home.scss b/assets/sass/pages/_home.scss index b0a3de5a..9e344a59 100644 --- a/assets/sass/pages/_home.scss +++ b/assets/sass/pages/_home.scss @@ -1,7 +1,7 @@ @charset "UTF-8"; // Home Styles -section#home { +div#layout--home { font-size: 1.025em; padding-top: 1.5em; padding-bottom: 0.75em; @@ -93,7 +93,7 @@ section#home { // Loop through $colors-home (see abstracts/_variables) @each $id, $colors in $colors-home { @each $theme, $color in $colors { - body.#{$theme} section#home a##{$id} { + body.#{$theme} div#layout--home a##{$id} { color: $color; background-image: underline-hack($color); } @@ -102,7 +102,7 @@ section#home { // Responsive @mixin responsive--home() { - section#home { + div#layout--home { font-size: 0.975em; padding: 1.2em 1.2em 0.4em 1.2em; diff --git a/assets/sass/pages/_list.scss b/assets/sass/pages/_list.scss index a63e1721..cb3525d9 100644 --- a/assets/sass/pages/_list.scss +++ b/assets/sass/pages/_list.scss @@ -1,7 +1,7 @@ @charset "UTF-8"; // Archive/List Styles -section#list { +div#layout--list { padding-top: 1.5em; padding-bottom: 0.25em; @@ -46,7 +46,7 @@ section#list { // Responsive @mixin responsive--list() { - section#list { + div#layout--list { padding: 1em 1em 0.25em 1em; section.year { diff --git a/assets/sass/pages/_single.scss b/assets/sass/pages/_single.scss index ffab7e41..1d7e4396 100644 --- a/assets/sass/pages/_single.scss +++ b/assets/sass/pages/_single.scss @@ -1,7 +1,7 @@ @charset "UTF-8"; // Post Styles -section#single { +div#layout--single { padding-top: 1em; padding-bottom: 1em; @@ -41,7 +41,7 @@ section#single { // Responsive @mixin responsive--single() { - section#single { + div#layout--single { padding: 0.8em 1.1em; h1#title { diff --git a/assets/sass/pages/_videos.scss b/assets/sass/pages/_videos.scss index 3951a75f..33cb9ecb 100644 --- a/assets/sass/pages/_videos.scss +++ b/assets/sass/pages/_videos.scss @@ -1,7 +1,7 @@ @charset "UTF-8"; // Video Styles -section#video { +div#layout--video { padding: 1.5em 0; text-align: center; @@ -39,7 +39,7 @@ section#video { // Responsive @mixin responsive--videos() { - section#video { + div#layout--video { padding: 1em 0; h1 { diff --git a/config.toml b/config.toml index 9520c047..6c4203a2 100644 --- a/config.toml +++ b/config.toml @@ -14,7 +14,9 @@ pygmentsCodeFencesGuessSyntax = false enableInlineShortcodes = true enableRobotsTXT = true -disableKinds = ["taxonomy", "taxonomyTerm"] +# as of v0.73.0: taxonomy => term, taxonomyTerm => taxonomy +# https://github.com/gohugoio/hugo/releases/tag/v0.73.0 +disableKinds = ["taxonomy", "term"] # don't worry, inserted manually :) disableHugoGeneratorInject = true diff --git a/content/_index.md b/content/_index.md index 0c04f0fa..a5556e5d 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,6 +1,6 @@ --- title: "Jake Jarvis – Front-End Web Developer in Boston, MA" -date: 2020-07-07 09:59:03-0400 +date: 2020-07-14 08:40:46-0400 type: home sitemap: changefreq: weekly diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 55c4dfdb..3f0d0d60 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -6,7 +6,7 @@
{{ partial "head/_head" . }} - + {{ partialCached "page/header" . }}