portfolio/themes/warwick_portfolio/layouts/_default/single.html

15 lines
443 B
HTML

{{define "main"}}
<div class="container">
<section id="single-article">
<article id="article-content">
<h1 style="margin-bottom: 1px"> {{.Title}} </h1>
{{- partial "taglist.html" . -}}
<time datetime="{{.Params.date.Format "2006-01-02T15:04:05"}}" class="index-article__date">
{{.Params.date.Format "2 January 2006"}}
</time>
<hr>
{{ .Content }}
</article>
</section>
</div>
{{end}}