mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-09 17:42:19 +00:00
initial work on giscus setup
This commit is contained in:
parent
3a380e2ef5
commit
787b716e75
4 changed files with 31 additions and 9 deletions
|
@ -18,6 +18,19 @@ comments = true
|
||||||
utterancesRepo = "jbowdre/site-comments"
|
utterancesRepo = "jbowdre/site-comments"
|
||||||
utterancesIssueTerm = "og:title"
|
utterancesIssueTerm = "og:title"
|
||||||
utterancesTheme = "gruvbox-dark"
|
utterancesTheme = "gruvbox-dark"
|
||||||
|
giscusCategory = "Announcements"
|
||||||
|
giscusCategoryId = "DIC_kwDOKKEGD84CcG89"
|
||||||
|
giscusCrossOrigin = "anonymous"
|
||||||
|
giscusEmitMetadata = "0"
|
||||||
|
giscusInputPosition = "bottom"
|
||||||
|
giscusLang = "en"
|
||||||
|
giscusLoading = "lazy"
|
||||||
|
giscusMapping = "og:title"
|
||||||
|
giscusReactions = "1"
|
||||||
|
giscusRepo = "jbowdre/site-comments"
|
||||||
|
giscusRepoId = "R_kgDOKKEGDw"
|
||||||
|
giscusStrict = "0"
|
||||||
|
giscusTheme = "dark"
|
||||||
|
|
||||||
analytics = true
|
analytics = true
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
comments = false
|
comments = true
|
||||||
analytics = false
|
analytics = false
|
|
@ -5,7 +5,7 @@ date: 2023-12-30
|
||||||
description: "Using Docker Compose to deploy containerized applications and make them available via Tailscale Serve and Tailscale Funnel"
|
description: "Using Docker Compose to deploy containerized applications and make them available via Tailscale Serve and Tailscale Funnel"
|
||||||
featured: false
|
featured: false
|
||||||
toc: true
|
toc: true
|
||||||
comment: true
|
comments: true
|
||||||
series: Projects
|
series: Projects
|
||||||
tags:
|
tags:
|
||||||
- containers
|
- containers
|
||||||
|
|
|
@ -1,12 +1,21 @@
|
||||||
{{ if .Site.Params.utterancesRepo }}
|
{{ if .Site.Params.giscusRepo }}
|
||||||
<br>
|
<br>
|
||||||
<div class="post_comments">
|
<div class="post_comments">
|
||||||
<script src="https://utteranc.es/client.js"
|
<script src="https://giscus.runtimeterror.dev/client.js"
|
||||||
repo="{{.Site.Params.utterancesRepo}}"
|
data-repo="{{ .Site.Params.giscusRepo }}"
|
||||||
issue-term="{{.Site.Params.utterancesIssueTerm | default "pathname"}}"
|
data-repo-id="{{ .Site.Params.giscusRepoId }}"
|
||||||
theme="{{.Site.Params.utterancesTheme | default "github-dark-orange"}}"
|
data-category="{{ .Site.Params.giscusCategory }}"
|
||||||
crossorigin="anonymous"
|
data-category-id="{{ .Site.Params.giscusCategoryId }}"
|
||||||
async>
|
data-mapping="{{ .Site.Params.giscusMapping }}"
|
||||||
|
data-strict="{{ .Site.Params.giscusStrict }}"
|
||||||
|
data-reactions-enabled="{{ .Site.Params.giscusReactions }}"
|
||||||
|
data-emit-metadata="{{ .Site.Params.giscusEmitMetadata }}"
|
||||||
|
data-input-position="{{ .Site.Params.giscusInputPosition }}"
|
||||||
|
data-theme="{{ .Site.Params.giscusTheme }}"
|
||||||
|
data-lang="{{ .Site.Params.giscusLang }}"
|
||||||
|
data-loading="{{ .Site.Params.giscusLoading }}"
|
||||||
|
crossorigin="{{ .Site.Params.giscusCrossOrigin }}"
|
||||||
|
async>
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
Loading…
Reference in a new issue