Files
blog_os/layouts/post/single.html
Philipp Oppermann 840ed0097a Add layout for post
2016-04-25 23:07:23 +02:00

13 lines
285 B
HTML

{{ partial "header.html" . }}
<article class="post">
<h1 class="post-title">{{ .Title }}</h1>
<time datetime="{{ .Date.Format "2006-01-02" }}" class="post-date">
{{ .Date.Format .Site.Params.date_format }}
</time>
{{ .Content }}
</article>
{{ partial "footer.html" . }}