hugo-book-theme/layouts/posts/single.html

9 lines
177 B
HTML
Raw Normal View History

2018-11-24 15:14:43 +01:00
{{ define "main" }}
2018-11-25 11:59:42 +01:00
<header>
<h1>{{ .Title }}</h1>
<h5>{{ .Date.Format "January 2, 2006" }}</h5>
</header>
<article class="markdown">
{{- .Content -}}
</article>
2018-11-24 15:14:43 +01:00
{{ end }}