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

13 lines
328 B
HTML
Raw Normal View History

2017-09-07 22:41:16 +03:00
{{ define "main" -}}
<div class="post">
<h1>{{ .Title }}</h1>
2018-08-29 20:18:14 +03:00
<time datetime={{ .Date.Format "2006-01-02T15:04:05Z0700" }} class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
2017-09-07 22:41:16 +03:00
{{ .Content }}
</div>
2014-04-27 01:25:13 +03:00
{{ if .Site.DisqusShortname -}}
2017-09-07 22:41:16 +03:00
<h2>Comments</h2>
{{ template "_internal/disqus.html" . }}
2017-09-07 22:41:16 +03:00
{{- end }}
2018-08-29 20:18:14 +03:00
{{- end }}