diff --git a/modules/wowchemy/go.mod b/modules/wowchemy/go.mod index fa9b4e01c..23da73fb8 100644 --- a/modules/wowchemy/go.mod +++ b/modules/wowchemy/go.mod @@ -3,7 +3,6 @@ module github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5 go 1.15 require ( - github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-core v0.2.0 - github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-seo v0.1.0 + github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-core v0.2.1-0.20231101183733-7b61e2f369e6 + github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-seo v0.1.1-0.20231101183733-7b61e2f369e6 ) - diff --git a/modules/wowchemy/layouts/partials/blocks/collection.html b/modules/wowchemy/layouts/partials/blocks/collection.html index 2effdc6df..7268c0933 100644 --- a/modules/wowchemy/layouts/partials/blocks/collection.html +++ b/modules/wowchemy/layouts/partials/blocks/collection.html @@ -63,7 +63,7 @@ {{/* Sort */}} {{ $sort_by := $block.content.sort_by | default "Date" }} -{{ $sort_by = partial "functions/get_sort_by_parameter" $sort_by }} +{{ $sort_by = partial "wowchemy-core/functions/get_sort_by_parameter" $sort_by }} {{ $sort_ascending := $block.content.sort_ascending | default (eq $block.content.order "asc") | default false }} {{ $sort_order := cond $sort_ascending "asc" "desc" }} {{ $query = sort $query $sort_by $sort_order }} diff --git a/modules/wowchemy/layouts/partials/blocks/portfolio.html b/modules/wowchemy/layouts/partials/blocks/portfolio.html index c0d47096e..d542e203b 100644 --- a/modules/wowchemy/layouts/partials/blocks/portfolio.html +++ b/modules/wowchemy/layouts/partials/blocks/portfolio.html @@ -87,7 +87,7 @@ {{/* Sort */}} {{ $sort_by := $block.content.sort_by | default "Date" }} - {{ $sort_by = partial "functions/get_sort_by_parameter" $sort_by }} + {{ $sort_by = partial "wowchemy-core/functions/get_sort_by_parameter" $sort_by }} {{ $sort_ascending := $block.content.sort_ascending | default (eq $block.content.order "asc") | default false }} {{ $sort_order := cond $sort_ascending "asc" "desc" }} {{ $query = sort $query $sort_by $sort_order }} diff --git a/modules/wowchemy/layouts/partials/page_header.html b/modules/wowchemy/layouts/partials/page_header.html index b03f82e36..24a37b6b5 100644 --- a/modules/wowchemy/layouts/partials/page_header.html +++ b/modules/wowchemy/layouts/partials/page_header.html @@ -1,5 +1,5 @@ {{ $page := . }} -{{ $featured := partial "functions/get_featured_image.html" $page }} +{{ $featured := partial "wowchemy-core/functions/get_featured_image.html" $page }} {{ $anchor := $page.Params.image.focal_point | default "Smart" }} diff --git a/modules/wowchemy/layouts/partials/site_footer.html b/modules/wowchemy/layouts/partials/site_footer.html index 9c59d51d2..ca2cc8e88 100644 --- a/modules/wowchemy/layouts/partials/site_footer.html +++ b/modules/wowchemy/layouts/partials/site_footer.html @@ -1,6 +1,6 @@