diff --git a/config.yaml b/config.yaml index 8131eb8..7676f40 100644 --- a/config.yaml +++ b/config.yaml @@ -1,6 +1,7 @@ baseURL: 'https://jtom38.github.io/cookbook/' +#baseURL: 'https://cookbook.jamestombleson.com/' languageCode: 'en-us' -title: 'Cookbook' +title: 'Tombleson Family Cookbook' theme: "hugo-bulma-cookbook" taxonomies: diff --git a/themes/hugo-bulma-cookbook/layouts/_default/index.html b/themes/hugo-bulma-cookbook/layouts/_default/index.html index 09d8aa9..d9d8aba 100644 --- a/themes/hugo-bulma-cookbook/layouts/_default/index.html +++ b/themes/hugo-bulma-cookbook/layouts/_default/index.html @@ -1,12 +1,18 @@ -{{ partial "header.html" . }} -{{ partial "hero.html" . }} - -
-
- -
- {{ .Content }} + + + + {{ partial "header.html"}} + {{ partial "header.meta.html" .}} + {{ partial "script.menu.html"}} + {{ .Title }} + + + {{ partial "navbar" . }} + {{ partial "hero.html" . }} +
+
+
+ {{ .Content }} +
-
- - + diff --git a/themes/hugo-bulma-cookbook/layouts/_default/list.html b/themes/hugo-bulma-cookbook/layouts/_default/list.html index d9563d0..0d7377e 100644 --- a/themes/hugo-bulma-cookbook/layouts/_default/list.html +++ b/themes/hugo-bulma-cookbook/layouts/_default/list.html @@ -1,12 +1,23 @@ -{{ partial "header.html" . }} -{{ partial "hero.html" . }} + + + + {{ partial "header.html"}} + {{ partial "header.meta.html" .}} + {{ partial "script.menu.html"}} + {{ .Title }} + + + {{ partial "navbar" . }} + {{ partial "hero.html" . }} +
+
+ {{ if $.Site.Params.UseListRows }} + {{ partial "list.rows.html" . }} + {{ end }} + + {{ if $.Site.Params.UseCardView }} + {{ partial "list.cards.html" . }} + {{ end }} +
+ -{{ if $.Site.Params.UseListRows }} -{{ partial "list.rows.html" . }} -{{ end }} - -{{ if $.Site.Params.UseCardView }} -{{ partial "list.cards.html" . }} -{{ end }} - -{{ partial "footer.html" . }} \ No newline at end of file diff --git a/themes/hugo-bulma-cookbook/layouts/_default/single.html b/themes/hugo-bulma-cookbook/layouts/_default/single.html index 779e07f..bdfe5c9 100644 --- a/themes/hugo-bulma-cookbook/layouts/_default/single.html +++ b/themes/hugo-bulma-cookbook/layouts/_default/single.html @@ -1,40 +1,46 @@ -{{ partial "header.html" . }} -{{ partial "hero.html" . }} + + + + {{ partial "header.html"}} + {{ partial "header.meta.single.html" .}} + {{ partial "script.menu.html"}} + {{ .Title }} + + + {{ partial "navbar" . }} + {{ partial "hero.html" . }} +
+
-
-
- -
+
-
- Missing thumbnail :( -
- -
-
- {{ .Content }} +
+ Missing thumbnail :(
- -

Posted: {{ .Date.Format "Mon Jan 2, 2006" }}

-
Word Count: {{ .WordCount }} Words
- -
-

Tags

-
- {{ with .Params.tags }} - - {{ range . }} - - {{ end }} - - {{ end }} +
+
+ {{ .Content }} +
+ +

Posted: {{ .Date.Format "Mon Jan 2, 2006" }}

+
Word Count: {{ .WordCount }} Words
+ +
+

Tags

+ +
+ {{ with .Params.tags }} + + {{ range . }} + + {{ end }} + + {{ end }} +
-
- - -{{ partial "footer.html" . }} \ No newline at end of file + \ No newline at end of file diff --git a/themes/hugo-bulma-cookbook/layouts/partials/footer.html b/themes/hugo-bulma-cookbook/layouts/partials/footer.html deleted file mode 100644 index 90e5d1b..0000000 --- a/themes/hugo-bulma-cookbook/layouts/partials/footer.html +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/themes/hugo-bulma-cookbook/layouts/partials/header.html b/themes/hugo-bulma-cookbook/layouts/partials/header.html index c98d51f..efbe8fc 100644 --- a/themes/hugo-bulma-cookbook/layouts/partials/header.html +++ b/themes/hugo-bulma-cookbook/layouts/partials/header.html @@ -1,39 +1,8 @@ - - - - - - - + + + + - - - - - - - {{ .Title }} - - - - {{ partial "navbar" . }} \ No newline at end of file + + + diff --git a/themes/hugo-bulma-cookbook/layouts/partials/header.meta.html b/themes/hugo-bulma-cookbook/layouts/partials/header.meta.html new file mode 100644 index 0000000..7f018d4 --- /dev/null +++ b/themes/hugo-bulma-cookbook/layouts/partials/header.meta.html @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/themes/hugo-bulma-cookbook/layouts/partials/header.meta.single.html b/themes/hugo-bulma-cookbook/layouts/partials/header.meta.single.html new file mode 100644 index 0000000..d9bcd74 --- /dev/null +++ b/themes/hugo-bulma-cookbook/layouts/partials/header.meta.single.html @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/themes/hugo-bulma-cookbook/layouts/partials/script.menu.html b/themes/hugo-bulma-cookbook/layouts/partials/script.menu.html new file mode 100644 index 0000000..36c610e --- /dev/null +++ b/themes/hugo-bulma-cookbook/layouts/partials/script.menu.html @@ -0,0 +1,22 @@ + + diff --git a/themes/hugo-bulma-cookbook/layouts/taxonomy/terms.html b/themes/hugo-bulma-cookbook/layouts/taxonomy/terms.html index a7a16bf..333e5f3 100644 --- a/themes/hugo-bulma-cookbook/layouts/taxonomy/terms.html +++ b/themes/hugo-bulma-cookbook/layouts/taxonomy/terms.html @@ -1,16 +1,25 @@ -{{ partial "header.html" . }} -{{ partial "hero.html" . }} + + -
-
+ + {{ partial "header.html"}} + {{ partial "header.meta.html" .}} + {{ partial "script.menu.html"}} + {{ .Title }} + -
- {{ range .Data.Pages }} - - {{ end }} + + {{ partial "navbar" . }} + {{ partial "hero.html" . }} +
+
+ +
+ {{ range .Data.Pages }} + + {{ end }} +
-
- -{{ partial "footer.html" . }} \ No newline at end of file + \ No newline at end of file