site/themes/sitetheme/layouts/blog/single.html

22 lines
627 B
HTML

{{ define "main" }}
<section class="section border">
{{ partial "ring.html" . }}
<hr>
<article>
<div class="blog-header">
<h1 class="blog-title">{{ .Title }}</h1>
{{ with .PublishDate }}
<h5>Written {{ $.PublishDate.Format "January 2, 2006" }}</h5>
{{ end }}
<h5>Last modifed {{ .Lastmod.Format "January 2, 2006" }}</h5>
<h5>Written by {{ .Params.author }}</h5>
</div>
<div class="blog-content">
{{ .Content }}
</div>
</article>
<hr>
{{ partial "ring.html" . }}
</section>
{{ end }}