mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-13 08:08:10 -07:00
36 lines
1.6 KiB
HTML
36 lines
1.6 KiB
HTML
{% if page.nocomments %}
|
|
{% else %}
|
|
{% if site.disqus_shortname %}
|
|
<div class="post-comments">
|
|
<div id="disqus_thread"></div>
|
|
<script type="text/javascript">
|
|
var disqus_shortname = '{{ site.disqus_shortname }}'; // required: replace example with your forum shortname
|
|
(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>
|
|
</div>
|
|
{% endif %}
|
|
{% if site.duoshuo_shortname %}
|
|
<div class="post-comments">
|
|
<!-- 多说评论框 start -->
|
|
<div class="ds-thread" data-thread-key="{{ page.id }}" data-title="{{ page.title }}" data-url="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}"></div>
|
|
<!-- 多说评论框 end -->
|
|
<!-- 多说公共JS代码 start (一个网页只需插入一次) -->
|
|
<script type="text/javascript">
|
|
var duoshuoQuery = {short_name:"{{ site.duoshuo_shortname }}"};
|
|
(function() {
|
|
var ds = document.createElement('script');
|
|
ds.type = 'text/javascript';ds.async = true;
|
|
ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js';
|
|
ds.charset = 'UTF-8';
|
|
(document.getElementsByTagName('head')[0]
|
|
|| document.getElementsByTagName('body')[0]).appendChild(ds);
|
|
})();
|
|
</script>
|
|
<!-- 多说公共JS代码 end -->
|
|
</div>
|
|
{% endif %}
|
|
{% endif %} |