Update config.toml

Deleted layouts/partials/comment-disabled.html
This commit is contained in:
Moe Poi ~ 2020-09-19 15:34:27 +00:00
parent 59b19d7fb1
commit a571e7ccc7
2 changed files with 3 additions and 20 deletions

View file

@ -359,8 +359,8 @@ theme = "LoveIt"
# Valine comment config
[params.page.comment.valine]
enable = false
appId = ""
appKey = ""
appId = "utGD7nEzMeanceV8745zAgA8-MdYXbMMI"
appKey = "FVBMhTpQKEI28bj3q0R8jdvl"
placeholder = ""
avatar = "mp"
meta= ""
@ -386,7 +386,7 @@ theme = "LoveIt"
languageCode = ""
# Telegram comments config
[params.page.comment.telegram]
enable = false
enable = true
siteID = "AatkodL9"
limit = 5
height = ""

View file

@ -1,17 +0,0 @@
{{- $cdn := .Scratch.Get "cdn" | default dict -}}
{{- $fingerprint := .Scratch.Get "fingerprint" -}}
{{- $comment := .Scratch.Get "comment" | default dict -}}
{{- $commentConfig := dict -}}
{{- if $comment.enable -}}
<div id="comments">
{{- /* Telegram Comments System */ -}}
{{- $telegram := $comment.telegram | default dict -}}
<div id="telegram-comments" class="comment"></div>
<script async src="https://comments.app/js/widget.js?3" data-comments-app-website="AatkodL9" data-limit="5" data-color="E22F38" data-colorful="1"></script>
<noscript>Please enable JavaScript to view the <a href="https://comments.app/">comments powered by Telegram Comments.</a></noscript>
{{- end -}}
{{- dict "comment" $commentConfig | dict "config" | merge (.Scratch.Get "this") | .Scratch.Set "this" -}}