From e56cc434032a491f86b0893f14769a7d0a035596 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Fri, 30 Dec 2022 23:32:37 -0800 Subject: [PATCH] Fix math partial template example --- exampleSite/content/blog/math-typesetting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exampleSite/content/blog/math-typesetting.md b/exampleSite/content/blog/math-typesetting.md index fa6bf2bc..c85a7130 100644 --- a/exampleSite/content/blog/math-typesetting.md +++ b/exampleSite/content/blog/math-typesetting.md @@ -17,7 +17,7 @@ In this example we will be using [KaTeX](https://katex.org/) - Include the partial in your templates like so: ``` -{{ if or .Params.math .Site.Params.math }} +{{ if or .Params.paige.math .Site.Params.paige.math }} {{ partial "math.html" . }} {{ end }} ```