From 81c6cb9ba648ab93274462df1b3105e9bb5791dd Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Sun, 22 Jun 2025 15:42:48 +1000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20incorrect=20path=20to=20pa?= =?UTF-8?q?rtials=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layouts/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/index.html b/layouts/index.html index 5acd13a..7773780 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,6 +1,6 @@ {{ define "main" }} {{ $partial := print "home/" .Site.Params.homepage.layout ".html" }} - {{ if templates.Exists ( printf "partials/%s" $partial) }} + {{ if templates.Exists ( printf "_partials/%s" $partial) }} {{ partial $partial . }} {{ else }} {{ partial "home/page.html" . }}