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" . }}
{{ block "main" . }}{{ end }} diff --git a/layouts/_default/etc.html b/layouts/_default/etc.html index 085d3652..36ae096c 100644 --- a/layouts/_default/etc.html +++ b/layouts/_default/etc.html @@ -1,9 +1,9 @@ {{ define "main" }} -
+

{{ .Title | markdownify }}

{{ .Content }}
-
+ {{ end }} diff --git a/layouts/_default/list.html b/layouts/_default/list.html index d6e67082..c60a34db 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,5 +1,5 @@ {{ define "main" }} -
+
{{- with .Pages }} {{- range .GroupByDate "2006" }}
@@ -17,5 +17,5 @@
{{- end }} {{- end }} -
+ {{ end }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 70cae708..c22332af 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,5 +1,5 @@ {{ define "main" }} -
+
-
+ {{ end }} diff --git a/layouts/_default/video.html b/layouts/_default/video.html index 22bd3bb8..073733dd 100644 --- a/layouts/_default/video.html +++ b/layouts/_default/video.html @@ -1,5 +1,5 @@ {{ define "main" }} -
+

{{ .Title | markdownify }}

+ {{ end }} diff --git a/layouts/index.atom b/layouts/index.atom index c9c448a0..7927869f 100644 --- a/layouts/index.atom +++ b/layouts/index.atom @@ -14,7 +14,7 @@ {{- with .Scratch.Get "authorImage" }} {{ .Permalink }} {{- end }} - {{ .Date.Format "2006-01-02T15:04:05Z" | safeHTML }} + {{ .Site.LastChange.Format "2006-01-02T15:04:05Z" | safeHTML }} {{- with .OutputFormats.Get "ATOM" }} {{ printf `` .MediaType.Type .Permalink | safeHTML }} {{- end }} diff --git a/layouts/index.html b/layouts/index.html index b3a8845d..a95ec754 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,5 +1,5 @@ {{ define "main" }} -
+
{{ .Content }} -
+ {{ end }} diff --git a/layouts/rss.xml b/layouts/rss.xml index 24e8f07c..44216c43 100644 --- a/layouts/rss.xml +++ b/layouts/rss.xml @@ -8,8 +8,8 @@ {{ . }}{{ end }}{{ with .Site.Author.email }} {{ . }}{{ with $.Site.Author.name }} ({{ . }}){{ end }}{{ end }}{{ with .Site.Author.email }} {{ . }}{{ with $.Site.Author.name }} ({{ . }}){{ end }}{{ end }}{{ with .Site.Copyright }} - {{ . }}{{ end }}{{ if not .Date.IsZero }} - {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ end }}{{ with .Scratch.Get "authorImage" }} + {{ . }}{{ end }} + {{ .Site.LastChange.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ with .Scratch.Get "authorImage" }} {{ .Permalink }} {{ $.Site.Title }}