From 370dc623ab8f8c065f6372892af27bc0c031e516 Mon Sep 17 00:00:00 2001 From: George Cushen Date: Sun, 19 May 2024 13:06:15 +0100 Subject: [PATCH] fix: debug msg --- modules/blox-tailwind/layouts/partials/site_head.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/blox-tailwind/layouts/partials/site_head.html b/modules/blox-tailwind/layouts/partials/site_head.html index 5134d6a0..dcf63aa1 100644 --- a/modules/blox-tailwind/layouts/partials/site_head.html +++ b/modules/blox-tailwind/layouts/partials/site_head.html @@ -49,7 +49,7 @@ {{ $theme_name := (lower site.Params.appearance.color) | default "blue" }} {{ $theme_path := printf "css/themes/%s.css" $theme_name }} {{ if not (fileExists (printf "assets/%s" $theme_path)) }} - {{ errorf "The specified color theme `%s.css` was not found in `assets/css/themes/`. Either install your custom color theme in the folder or set the `color` theme value in `params.yaml` to an existing theme such as `blue`." }} + {{ errorf "The specified color theme `%s.css` was not found in `assets/css/themes/`. Either install your custom color theme in the folder or set the `color` theme value in `params.yaml` to an existing theme such as `blue`." $theme_name }} {{ else }} {{ $theme_css := resources.Get $theme_path | minify }}