|
{{ define "main" }}
|
|
<header class="post-header">
|
|
<h1 id="title">{{ .Title }}</h1>
|
|
{{- partial "post-info.html" . -}}
|
|
</header>
|
|
<article {{ if eq .Layout "verse" }} class="content, {{ .Layout }}"
|
|
{{ else }} class="content"
|
|
{{ end }}>
|
|
{{ .Content }}
|
|
</article>
|
|
{{ end }}
|
|
|