From f481ca7ad2dac3556b7e2c2ab2dc327264058c9a Mon Sep 17 00:00:00 2001 From: Robrecht Cannoodt Date: Sat, 29 Oct 2022 00:55:35 +0200 Subject: [PATCH] Template is not being picked up Despite commit acd74954b5dd0a10f683744d11635bb1b1b76076 mentioning that the custom.html is still supported for now, I don't think it's being picked up at the moment. This PR resolves this issue. --- modules/wowchemy/layouts/partials/site_js.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wowchemy/layouts/partials/site_js.html b/modules/wowchemy/layouts/partials/site_js.html index 8f7cff593..a2bd8e4bc 100644 --- a/modules/wowchemy/layouts/partials/site_js.html +++ b/modules/wowchemy/layouts/partials/site_js.html @@ -233,7 +233,7 @@ {{/* EXTENSIBILITY HOOK: BODY-END */}} {{/* Deprecated custom_js hook */}} -{{ if templates.Exists "partials/custom_js" }} +{{ if templates.Exists "partials/custom_js.html" }} {{ partial "custom_js" . }} {{ end }} {{ partial "functions/get_hook" (dict "hook" "body-end" "context" .) }}