Fix Disqus
* Use Hugo's built-in disqus template * Add some extra style * See #9
This commit is contained in:
parent
50fe5d1045
commit
caf088cbfb
6 changed files with 21 additions and 22 deletions
|
@ -8,8 +8,10 @@
|
|||
<div class="content">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
{{- with .Params.comments }}
|
||||
{{ with .Site.DisqusShortname }}{{ partialCached "disqus.html" . }}{{ end }}
|
||||
{{- if and .Params.comments .Site.DisqusShortname }}
|
||||
<div id="disqus" class="thin">
|
||||
{{ template "_internal/disqus.html" . }}
|
||||
</div>
|
||||
{{- end }}
|
||||
</main>
|
||||
{{ end }}
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
(function() {
|
||||
// Don't ever inject Disqus on localhost--it creates unwanted
|
||||
// discussions from 'localhost:1313' on your Disqus account...
|
||||
if (window.location.hostname == "localhost")
|
||||
return;
|
||||
|
||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||
var disqus_shortname = '{{ .Site.DisqusShortname }}';
|
||||
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>
|
|
@ -44,8 +44,10 @@
|
|||
</a>
|
||||
{{- end }}
|
||||
</div>
|
||||
{{- with .Site.DisqusShortname }}
|
||||
{{ partialCached "disqus.html" . }}
|
||||
{{- if .Site.DisqusShortname }}
|
||||
<div id="disqus" class="thin">
|
||||
{{ template "_internal/disqus.html" . }}
|
||||
</div>
|
||||
{{- end }}
|
||||
</main>
|
||||
{{ end }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue