hugo-theme-hyde-hyde/layouts/partials/page-single/content.html

17 lines
433 B
HTML

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