13 lines
360 B
HTML
13 lines
360 B
HTML
{{define "main"}}
|
|
<div class="container">
|
|
<section id="single-article">
|
|
<article id="article-content">
|
|
<h1> {{.Title}} </h1>
|
|
<time datetime="{{.Params.date.Format "2006-01-02T15:04:05"}}" class="index-article__date">{{.Params.date.Format "2 January 2006"}}</span>
|
|
|
|
<hr>
|
|
{{ .Content }}
|
|
</article>
|
|
</section>
|
|
</div>
|
|
{{end}}
|