summaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authordigitalcraftsman <digitalcraftsman@users.noreply.github.com>2015-07-17 12:21:50 +0200
committerdigitalcraftsman <digitalcraftsman@users.noreply.github.com>2015-07-17 12:23:59 +0200
commit62ef2ef06f36bccddecaffc9567898899c29036d (patch)
tree2de095f18e95a4b857a6bd0f8c85cdf1d9205aba /layouts
parenta874cebd9844764360be9ab93568cc6e334b0e4e (diff)
Added Disqus support
Diffstat (limited to 'layouts')
-rw-r--r--layouts/_default/single.html24
-rw-r--r--layouts/partials/disqus.html14
2 files changed, 28 insertions, 10 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 9f4f603..6bd2524 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,15 +1,19 @@
-{{ partial "head.html" . }}
-<body class="{{ .Site.Params.themeColor }}">
+ {{ partial "head.html" . }}
+ <body class="{{ .Site.Params.themeColor }}">
+ {{ partial "sidebar.html" . }}
-{{ partial "sidebar.html" . }}
+ <div class="content container">
+ <div class="post">
+ <h1>{{ .Title }}</h1>
+ <span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
+ {{ .Content }}
+ </div>
- <div class="content container">
-<div class="post">
- <h1>{{ .Title }}</h1>
- <span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
- {{ .Content }}
-</div>
-</div>
+ {{ if and (isset .Site.Params "disqusShortname") (ne .Site.Params.disqusShortname "") }}
+ <h2>Comments</h2>
+ {{ partial "disqus" . }}
+ {{ end }}
+ </div>
</body>
</html>
diff --git a/layouts/partials/disqus.html b/layouts/partials/disqus.html
new file mode 100644
index 0000000..323ae04
--- /dev/null
+++ b/layouts/partials/disqus.html
@@ -0,0 +1,14 @@
+<div id="disqus_thread"></div>
+<script type="text/javascript">
+ /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
+ var disqus_shortname = '{{ .Site.Params.disqusShortname }}'; // Required - Replace '<example>' with your forum shortname
+
+ /* * * 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>
+</div> \ No newline at end of file