hugo-theme-hyde-hyde/layouts/partials/page-single.html
2018-07-27 07:08:51 +10:00

16 lines
345 B
HTML

<article>
<header>
<h1>{{ .Title }}</h1>
{{ with .Params.subtitle }}
<span class="post__subtitle">
{{.}}
</span>
{{ end }}
{{ partial "post-meta-top.html" . }}
</header>
<div class="post">
{{ .Content }}
</div>
{{ partial "post-meta-bottom.html" . }}
{{ partial "post-related.html" . }}
</article>