From bb40e0d2fc1341c91a0545006f0145c85420688b Mon Sep 17 00:00:00 2001 From: James Ray Date: Mon, 28 Feb 2022 09:43:23 -0500 Subject: [PATCH] update theme default to light update category default to General --- layouts/partials/giscus.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/partials/giscus.html b/layouts/partials/giscus.html index 1ae1eb6..90e11b5 100644 --- a/layouts/partials/giscus.html +++ b/layouts/partials/giscus.html @@ -1,6 +1,6 @@ {{ $repo := site.Params.features.comment.giscus.repo }} -{{ $category := site.Params.features.comment.giscus.category | default "Announcements" }} -{{ $theme := site.Params.features.comment.giscus.theme | default "dark" }} +{{ $category := site.Params.features.comment.giscus.category | default "General" }} +{{ $theme := site.Params.features.comment.giscus.theme | default "light" }} {{ $map := site.Params.features.comment.giscus.map | default "url" }} {{ $reaction := site.Params.features.comment.giscus.reaction | default "1" }} {{ $metadata := site.Params.features.comment.giscus.metadata | default "0" }}