From f44cbb876bb4ca140ab775aebc57896a536a14bc Mon Sep 17 00:00:00 2001 From: hossainemruz Date: Tue, 15 Mar 2022 23:20:07 +0600 Subject: [PATCH] Use repoID and categoryID in giscus template Signed-off-by: hossainemruz --- layouts/partials/giscus.html | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/layouts/partials/giscus.html b/layouts/partials/giscus.html index 90e11b5..8d9c689 100644 --- a/layouts/partials/giscus.html +++ b/layouts/partials/giscus.html @@ -1,15 +1,19 @@ -{{ $repo := site.Params.features.comment.giscus.repo }} -{{ $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" }} +{{ $repo := site.Params.features.comment.giscus.repo }} +{{ $repoID := site.Params.features.comment.giscus.repoID }} +{{ $category := site.Params.features.comment.giscus.category | default "General" }} +{{ $categoryID := site.Params.features.comment.giscus.categoryID }} +{{ $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" }} {{ $inputPosition := site.Params.features.comment.giscus.inputPosition | default "bottom" }} -{{ $crossOrigin := site.Params.features.comment.giscus.crossOrigin | default "anonymous" }} +{{ $crossOrigin := site.Params.features.comment.giscus.crossOrigin | default "anonymous" }}