digitalcraftsman / hugo-material-docs

Port of Martin Donath's mkdocs-material theme to Hugo
MIT License
706 stars 186 forks source link

Is it possible to add disqus comments section? #56

Open dselivanov opened 7 years ago

dselivanov commented 7 years ago

Tried to find way, but have no clue.

veith commented 7 years ago

Just add following to ~/themes/hugo-material-docs/layouts/_default/single.html

{{ template "_internal/disqus.html" . }} 

And in your config.toml add

...
[params]
...
disqusShortname = "xyz"
...