Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Comments

Michael Noronha edited this page Jun 24, 2019 · 5 revisions

Available comment softwares

Isso

Isso (also on GitHub) is an opensource self-hosted comment software for your static blog. It's meant as a privacy-respecting replacement for Disqus.

To activate it you just need to specify an issoHost in your configuration file.

[params]
...
issoHost = "your-domain.org:1234"

To see how you can install and configure it, please review the docs.

Disqus

Disqus is an external comment system. It enables you to have comments on your static blog without the need to run additional software on your server.

To activate it you just need to specify a disqusShortname in your configuration file.

disqusShortname = "XYW"

Note that this isn't a parameter (under param), but a top level site variable. More information is available in Hugo's documentation.

Commento

Commento is an open source, privacy focused discussion comment platform that you can self-host (similar to Isso).

To activate it you just need to specify an commentoHost in your configuration file.

[params]
...
commentoHost = "your-domain.org:1234"

To see how you can install and configure it, please review the docs.

Utterances

Utterances is a Github-issues-backed comment system. To activate it, set the following parameters:

[params.utteranc]
enable = true
repo = "your/repository"
issueTerm = "title"

exampleSite includes and example.

Clone this wiki locally