Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/giscus.html')
-rw-r--r--layouts/partials/giscus.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/layouts/partials/giscus.html b/layouts/partials/giscus.html
deleted file mode 100644
index 8d9c689..0000000
--- a/layouts/partials/giscus.html
+++ /dev/null
@@ -1,25 +0,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" }}
-
-<script src="https://giscus.app/client.js"
- data-repo="{{ $repo }}"
- data-repo-id="{{ $repoID }}"
- data-category="{{ $category }}"
- data-category-id="{{ $categoryID }}"
- data-mapping="{{ $map }}"
- data-reactions-enabled="{{ $reaction }}"
- data-emit-metadata="{{ $metadata }}"
- data-input-position="{{ $inputPosition }}"
- data-theme="{{ $theme }}"
- data-lang="{{ .Site.Language.Lang }}"
- crossorigin="{{ $crossOrigin }}"
- async>
-</script>