pi-www-theme-soho/layouts/_default/single.html

19 lines
485 B
HTML
Raw Normal View History

{{ partial "head.html" . }}
<body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}">
{{ partial "sidebar.html" . }}
2014-04-27 01:25:13 +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
{{ 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>