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

16 lines
346 B
HTML
Raw Normal View History

2018-07-16 03:22:00 +00:00
<article>
<header>
<h1>{{ .Title }}</h1>
{{ with .Params.subtitle }}
<span class="post__subtitle">
{{.}}
</span>
{{ end }}
{{ partial "post-meta-before.html" . }}
</header>
<div class="post">
{{ .Content }}
</div>
{{ partial "post-meta-after.html" . }}
{{ partial "post-related.html" . }}
2018-07-20 20:32:00 +00:00
</article>