blob: 6bd252422c96b2edc90916a4979f6db4119f947b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{{ partial "head.html" . }}
<body class="{{ .Site.Params.themeColor }}">
{{ 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>
{{ if and (isset .Site.Params "disqusShortname") (ne .Site.Params.disqusShortname "") }}
<h2>Comments</h2>
{{ partial "disqus" . }}
{{ end }}
</div>
</body>
</html>
|