portfoligor/layouts/_default/single.html

13 lines
322 B
HTML

{{ 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 }}