| 12345678910111213141516171819 | 	{{ 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>
 |