Added Disqus support

This commit is contained in:
digitalcraftsman 2015-07-17 12:21:50 +02:00
parent a874cebd98
commit 62ef2ef06f
3 changed files with 45 additions and 10 deletions

View file

@ -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>