2015-07-17 13:21:50 +03:00
|
|
|
{{ partial "head.html" . }}
|
2016-04-23 06:01:32 +03:00
|
|
|
<body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}">
|
2015-07-17 13:21:50 +03:00
|
|
|
{{ partial "sidebar.html" . }}
|
2014-04-27 01:25:13 +03:00
|
|
|
|
2015-07-17 13:21:50 +03:00
|
|
|
<div class="content container">
|
|
|
|
<div class="post">
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
2014-04-27 01:25:13 +03:00
|
|
|
|
2017-07-25 11:18:25 +03:00
|
|
|
{{ if .Site.Params.disqusShortname }}
|
2015-07-17 13:21:50 +03:00
|
|
|
<h2>Comments</h2>
|
|
|
|
{{ partial "disqus" . }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2014-04-27 01:25:13 +03:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|