diff options
Diffstat (limited to 'themes/hugo-theme-stack/layouts/partials/comments/provider/disqus.html')
-rw-r--r-- | themes/hugo-theme-stack/layouts/partials/comments/provider/disqus.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/themes/hugo-theme-stack/layouts/partials/comments/provider/disqus.html b/themes/hugo-theme-stack/layouts/partials/comments/provider/disqus.html new file mode 100644 index 0000000..fb17b77 --- /dev/null +++ b/themes/hugo-theme-stack/layouts/partials/comments/provider/disqus.html @@ -0,0 +1,22 @@ +<div class="disqus-container"> + {{ template "_internal/disqus.html" . }} +</div> + +<style> + .disqus-container { + background-color: var(--card-background); + border-radius: var(--card-border-radius); + box-shadow: var(--shadow-l1); + padding: var(--card-padding); + } +</style> + +<script> + window.addEventListener('onColorSchemeChange', (e) => { + if (typeof DISQUS == 'object') { + DISQUS.reset({ + reload: true + }); + } + }) +</script>
\ No newline at end of file |