我使用Jekyll创建了一个博客类型页面并使用GitHub页面托管它。我最近尝试添加disqus评论;当我在我的目录中运行一个Jekyll服务器并通过localhost:4000访问我的页面时,注释就在那里并且功能齐全。当我推送我的更改并尝试通过我的浏览器(grilla99.github.io)访问它时,我的问题就出现了,然后不会显示更改。为什么会发生这种情况?
我的post.html看起来像这样
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">{{ page.title | escape }}</h1>
<p class="post-meta">
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
{% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %}
{{ page.date | date: date_format }}
</time>
{% if page.author %}
• <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>
{% endif %}</p>
</header>
<div class="post-content" itemprop="articleBody">
{{ content }}
</div>
{% include disqus_comments.html %}
</article>
我的disqus_comments.html文件如下所示:
{% if page.comments %}
<div id="disqus_thread"></div>
<script>
/
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
var disqus_config = function () {
// this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = grilla99-github-io;
};
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = 'https://grilla99-github-io-1.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
{% endif %}
在我的YAML内的帖子页面上,我已经设置了
评论:是的
为什么在线时不显示,我该如何解决?
答案 0 :(得分:0)
替换以下代码
this.page.identifier = grilla99-github-io;
与
this.page.identifier = '{{ page.url | absolute_url }}';
答案 1 :(得分:0)
我看到您正在为您的网站使用默认的Jekyll主题。 只需在配置文件中添加以下内容即可。
disqus:
shortname: my_disqus_shortname