blog/layouts/_default/single.html

29 lines
436 B
HTML
Raw Normal View History

2023-05-29 21:37:18 +00:00
{{ define "main" }}
<article>
<h1>
{{ .Title }}
</h1>
<p class="subtitle">
{{ .Description }}
</p>
<p class="publication-time">
{{ $dateTime := .PublishDate.Format "2006-01-02" }}
<time datetime="{{ $dateTime }}">
{{ $dateTime }}
</time>
</p>
<div id="content">
{{ .Content }}
</div>
<p class="authors">
{{ range $.Param "authors" }}
{{ . }}
{{ end }}
</p>
</article>
{{ end }}