My blog currently runs Jekyll and the Minimal Mistakes theme, and uses the theme's built in functionality to add the Disqus comments system.
This JavaScript-based commenting system, to me sort of defeats the purpose of having a static blog in Jekyll, considering:
- Its JavaScript creates a decisively non-static page.
- Comments are not stored with the website.
- Comments are stored in some database instead of flat-text files.
My question is, therefore: What is a suitable system for comments that stays as close to the Jekyll philosophy as possible (an ideally runs on gh-pages)?
I found several possible candidates:
- Isso is a comments system which is looks similar to Disqus, it works with a SQLite database
- Jekyll::StaticComments seems pretty suitable, but it means you have to manually add the comments from emails.
Are there any other options? If so, what would work with gh-pages, and what would work on a self-hosted Jekyll blog?
_comments
, but obviously this is only possible with a git commit. Perhaps it would be possible to have a hybrid form, which displays the comments from the issue tracker, until the owner moves them to_comments
(also displayed), ideally in a somewhat automated way. – Goosefoot