Files
blog_os/layouts/post/single.html
Philipp Oppermann e0ce3a6774 Add disqus comments
2016-04-30 14:30:43 +02:00

18 lines
446 B
HTML

{{ partial "header.html" . }}
<article class="post">
<h1 class="post-title">{{ .Title }}</h1>
<time datetime="{{ .Date.Format "2006-01-02" }}" class="post-date">
{{ .Date.Format .Site.Params.date_format }}
{{ if isset .Params "updated" }}
(updated on {{ .Params.updated | dateFormat .Site.Params.date_format }})
{{ end }}
</time>
{{ .Content }}
</article>
{{ partial "disqus.html" . }}
{{ partial "footer.html" . }}