hugo-book/layouts/posts/single.html

12 lines
210 B
HTML
Raw Normal View History

2018-11-24 14:14:43 +00:00
{{ define "main" }}
2018-11-25 10:59:42 +00:00
<header>
<h1>{{ .Title }}</h1>
2018-11-25 12:30:25 +00:00
<h5>
<strong>{{ .Date.Format .Site.Params.DateFormat }}</strong>
2018-11-25 12:30:25 +00:00
</h5>
2018-11-25 10:59:42 +00:00
</header>
<article class="markdown">
{{- .Content -}}
</article>
2018-11-25 12:30:25 +00:00
{{ end }}