无法在我的网站(jekyll)上获取Discus评论部分

无法在我的网站(jekyll)上获取Discus评论部分,jekyll,github-pages,disqus,Jekyll,Github Pages,Disqus,我在Lanyon上创建了我的网站,但当我试图配置Discus评论框时,它没有出现在网站上 我做了以下修改: \u layouts/default.html <!DOCTYPE html> <html lang="en-us"> {% include head.html %} <body> {% include google_analytics.html %} {% include sidebar.html %} <!

我在Lanyon上创建了我的网站,但当我试图配置Discus评论框时,它没有出现在网站上

我做了以下修改:

\u layouts/default.html

<!DOCTYPE html>
<html lang="en-us">

  {% include head.html %}

  <body>
    {% include google_analytics.html %}
    {% include sidebar.html %}

    <!-- Wrap is the content to shift when toggling the sidebar. We wrap the
         content to avoid any CSS collisions with our real content. -->
    <div class="wrap">
      <div class="masthead">
        <div class="container">
          <h3 class="masthead-title">
            <a href="{{ site.baseurl }}/" title="Home">{{ site.title }}</a>
            <small>{{ site.tagline }}</small>
          </h3>
        </div>
      </div>

      <div class="container content">
        {{ content }}
        {% include comments.html %}
      </div>
    </div>

    <label for="sidebar-checkbox" class="sidebar-toggle"></label>

    <script>
      (function(document) {
        var toggle = document.querySelector('.sidebar-toggle');
        var sidebar = document.querySelector('#sidebar');
        var checkbox = document.querySelector('#sidebar-checkbox');

        document.addEventListener('click', function(e) {
          var target = e.target;

          if(!checkbox.checked ||
             sidebar.contains(target) ||
             (target === checkbox || target === toggle)) return;

          checkbox.checked = false;
        }, false);
      })(document);
    </script>
  </body>
</html>
{% if page.comments %}
  <!-- Add Disqus comments. -->
  <div id="disqus_thread"></div>
  <script type="text/javascript">
      /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
      var disqus_shortname = 'yathartha22-github-io'; // required: replace example with your forum shortname
      var disqus_identifier = "{{ site.disqusid }}{{ page.url | replace:'index.html','' }}"
      /* * * DON'T EDIT BELOW THIS LINE * * */
      (function() {
          var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
          dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
          (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
      })();
  </script>
  <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
  <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
{% endif %}

{%include head.html%}
{%include google_analytics.html%}
{%include sidebar.html%}
{{site.tagline}
{{content}}
{%include comments.html%}
(职能(文件){
var toggle=document.querySelector('.sidebar toggle');
var sidebar=document.querySelector(“#sidebar”);
var checkbox=document.querySelector(“#侧栏复选框”);
document.addEventListener('click',函数(e){
var目标=e.target;
如果(!checkbox.checked||
包含(目标)||
(目标===复选框| |目标===切换))返回;
checkbox.checked=false;
},假);
})(文件);
\u includes/comments.html

<!DOCTYPE html>
<html lang="en-us">

  {% include head.html %}

  <body>
    {% include google_analytics.html %}
    {% include sidebar.html %}

    <!-- Wrap is the content to shift when toggling the sidebar. We wrap the
         content to avoid any CSS collisions with our real content. -->
    <div class="wrap">
      <div class="masthead">
        <div class="container">
          <h3 class="masthead-title">
            <a href="{{ site.baseurl }}/" title="Home">{{ site.title }}</a>
            <small>{{ site.tagline }}</small>
          </h3>
        </div>
      </div>

      <div class="container content">
        {{ content }}
        {% include comments.html %}
      </div>
    </div>

    <label for="sidebar-checkbox" class="sidebar-toggle"></label>

    <script>
      (function(document) {
        var toggle = document.querySelector('.sidebar-toggle');
        var sidebar = document.querySelector('#sidebar');
        var checkbox = document.querySelector('#sidebar-checkbox');

        document.addEventListener('click', function(e) {
          var target = e.target;

          if(!checkbox.checked ||
             sidebar.contains(target) ||
             (target === checkbox || target === toggle)) return;

          checkbox.checked = false;
        }, false);
      })(document);
    </script>
  </body>
</html>
{% if page.comments %}
  <!-- Add Disqus comments. -->
  <div id="disqus_thread"></div>
  <script type="text/javascript">
      /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
      var disqus_shortname = 'yathartha22-github-io'; // required: replace example with your forum shortname
      var disqus_identifier = "{{ site.disqusid }}{{ page.url | replace:'index.html','' }}"
      /* * * DON'T EDIT BELOW THIS LINE * * */
      (function() {
          var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
          dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
          (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
      })();
  </script>
  <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
  <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
{% endif %}
{%if page.comments%}
/***配置变量:粘贴到网页前编辑***/
var discus_shortname='yathatha22 github io';//必需:将示例替换为论坛短名称
var discus_identifier=“{{site.discusid}}{{page.url}替换:'index.html',''}}”
/***请勿在此行下方编辑***/
(功能(){
var dsq=document.createElement('script');dsq.type='text/javascript';dsq.async=true;
dsq.src='/'+discus_shortname+'.discus.com/embed.js';
(document.getElementsByTagName('head')[0]| | document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
请启用JavaScript以查看
{%endif%}

在这两个文件中,我对Disqs进行了修改,以进行集成,但我无法获取它。谁能帮帮我吗。我甚至在每篇文章中都发表了
comments=true
。以下是我的博客的链接

修复
\u includes/comments.html

{% if page.comments %}
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES * * */
var disqus_shortname = 'yathartha22-github-io' ;

 /* * * DON'T EDIT BELOW THIS LINE * * */
 (function() {
   var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
   dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
   (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
 })();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
{% endif %}
对此

  <a href="{{ post.url | absolute_url}}">