diff --git a/site/content/contact.md b/site/content/contact.md index ea3eb07..c90c457 100644 --- a/site/content/contact.md +++ b/site/content/contact.md @@ -2,7 +2,7 @@ title: Contact featured_image: "images/banner2.jpg" omit_header_text: true -type: news +type: page menu: main: {} --- diff --git a/site/layouts/_default/single.html b/site/layouts/_default/single.html index 48e456c..87d39f6 100755 --- a/site/layouts/_default/single.html +++ b/site/layouts/_default/single.html @@ -8,13 +8,6 @@
-

- {{/* - CurrentSection allows us to use the section title instead of inferring from the folder. - https://gohugo.io/variables/page/#section-variables-and-methods - */}} - {{with .CurrentSection.Title }}{{. | upper }}{{end}} -

{{- .Title -}}

@@ -22,16 +15,6 @@ - {{/* - Show "reading time" and "word count" but only if one of the following are true: - 1) A global config `params` value is set `show_reading_time = true` - 2) A section front matter value is set `show_reading_time = true` - 3) A page front matter value is set `show_reading_time = true` - */}} - {{ if (or (eq (.Param "show_reading_time") true) (eq $section.Params.show_reading_time true) )}} - - {{ .ReadingTime}} minutes read - - {{ .WordCount}} words - {{ end }}