--- template: overrides/main.html --- # Adding a comment system Material for MkDocs allows to easily add the third-party comment system of your choice to the footer of every page by using [theme extension]. As an example, we'll be integrating [Disqus] a wildly popular comment provider, but others can be integrate with the same principles [Disqus]: https://disqus.com/ ## Customization ### Disqus integration In order to integrate a third-party comment provider offering a JavaScript-based solution, follow the guide on [theme extension], copy the contents from the [`content.html`][content partial] partial and create a file at the same location in the `overrides` folder: === ":octicons-file-code-16: overrides/partials/content.html" ``` html {% set disqus = config.extra.disqus %} {% if page and page.meta and page.meta.disqus is string %} {% set disqus = page.meta.disqus %} {% endif %} {% if not page.is_homepage and disqus %}