diff --git a/themes/hugo-bulma-cookbook/layouts/_default/list.html b/themes/hugo-bulma-cookbook/layouts/_default/list.html index e40a75f..d9563d0 100644 --- a/themes/hugo-bulma-cookbook/layouts/_default/list.html +++ b/themes/hugo-bulma-cookbook/layouts/_default/list.html @@ -1,59 +1,12 @@ {{ partial "header.html" . }} {{ partial "hero.html" . }} -
-
- - {{ range .RegularPages }} +{{ if $.Site.Params.UseListRows }} +{{ partial "list.rows.html" . }} +{{ end }} -
-
-
- - - - - -
-

- {{ .Title }} -

-

{{ .Params.subtitle }}

- - {{ with .Params.tags }} -
- {{ range . }} - - {{ end }} -
- {{ end }} - - - {{ with .Params.categories }} -
- {{ range . }} - - {{ end }} -
- {{ end }} -
-
-
-
- {{ 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 fa77727..779e07f 100644 --- a/themes/hugo-bulma-cookbook/layouts/_default/single.html +++ b/themes/hugo-bulma-cookbook/layouts/_default/single.html @@ -6,11 +6,9 @@
- {{ if .Params.thumbnail }}
- + Missing thumbnail :(
- {{ end }}
diff --git a/themes/hugo-bulma-cookbook/layouts/partials/header.html b/themes/hugo-bulma-cookbook/layouts/partials/header.html index 605a2a3..c98d51f 100644 --- a/themes/hugo-bulma-cookbook/layouts/partials/header.html +++ b/themes/hugo-bulma-cookbook/layouts/partials/header.html @@ -6,9 +6,9 @@ - - - + + +