Jekyll 和 Disqus:无法让 disqus 出现在网站上

Jekyll and Disqus: cannot get disqus to appear on site

我正在使用 Github Pages 的 Jekyll 集成。我今天添加了 Disqus 配置,但 Disqus 没有出现在我的帖子中。我已将 Disqus 脚本添加到文件 _includes/disqus.html 并将 {% include disqus.html %} 添加到 _layouts/default.html。

您可以在我的 https://github.com/shaneoston72/shaneoston72.github.io

查看此作品

感谢您提供的任何帮助。

好的,我们需要在这里做一些事情:

在你的文件末尾_layouts/default.html我看到的是:

 </div>
    {% include disqus.html %}
    {% include footer.html %}   
  </body>

将此部分替换为:

 </div>
    {% include footer.html %}
    {% if page.comments %}
    {% include disqus.html %}
    {% endif %}
  </body>

然后,在您的文件 _includes/disqus.html 上,删除第一行和最后一行:

{% if post.comments %}
.....
{% endif %}

这应该可以完成工作。让我知道进展如何,好吗?

希望对您有所帮助!