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

20 lines
485 B
HTML

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