contrast-hugo/layouts/_default/single.html

12 lines
306 B
HTML
Raw Normal View History

2019-07-15 09:04:11 -04:00
{{ define "main" }}
<article>
<header>
2019-07-31 14:57:41 -04:00
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
2019-08-01 09:44:41 -04:00
{{ if .Date }}<p class="meta"><time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "January 02, 2006" }}</time></p>{{ end }}
2019-07-15 09:04:11 -04:00
</header>
{{ .Content }}
</article>
2019-07-18 17:01:53 -04:00
{{ end }}