From 8d87698788948c1f6bcced8b06241797b921a806 Mon Sep 17 00:00:00 2001 From: digitalcraftsman Date: Sat, 18 Jul 2015 15:13:33 +0200 Subject: [PATCH] Integrated Disqus in posts --- layouts/posts/single.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 layouts/posts/single.html diff --git a/layouts/posts/single.html b/layouts/posts/single.html new file mode 100644 index 0000000..f841e29 --- /dev/null +++ b/layouts/posts/single.html @@ -0,0 +1,18 @@ + {{ partial "head.html" . }} + + {{ partial "nav.html" . }} + {{ partial "profile.html" . }} + +
+ {{ .Content }} + + {{ if and (isset .Site.Params "disqusShortname") (ne .Site.Params.disqusShortname "") }} + {{ partial "disqus" . }} + {{ end }} + + {{ partial "footer.html" . }} +
+ + {{ partial "js.html" . }} + +