mshj_blog/themes/terminal/layouts/_shortcodes/chat.html
2026-01-29 00:20:53 -05:00

16 lines
680 B
HTML

{{ if .Site.Params.cactusComments.enabled }}
<section id="cactus-comments" class="comments-section">
<script type="text/javascript" src="https://latest.cactus.chat/cactus.js"></script>
<link rel="stylesheet" href="https://latest.cactus.chat/style.css" type="text/css">
<div id="comment-section"></div>
<script>
initComments({
node: document.getElementById("comment-section"),
defaultHomeserverUrl: "https://{{ .Site.Params.cactusComments.serverName }}",
serverName: "{{ .Site.Params.cactusComments.serverName }}",
siteName: "{{ .Site.Params.cactusComments.siteName }}",
commentSectionId: "{{ index .Params 0 }}"
})
</script>
</section>
{{ end }}