blog/layouts/_default/single.html

17 lines
472 B
HTML

{{ define "main" }}
<article class="post">
<h1 class="title"><a href="{{ .Permalink }}">{{ .Title }}</a> {{ if .Draft }}(Draft){{ end }}</h1>
<p class="meta">
<span class="postdate">Posted {{ .Date.Format "January 02 2006" }}</span><br/>
{{ partial "tags.html" . }}
</p>
<div class="post-content">{{ .Content | safeHTML }}</div>
</article>
<div id="openring">
{{ partial "openring.out.html" . }}
</div>
{{ end }}