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

17 lines
345 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 }}
2018-07-26 21:08:51 +00:00
{{ partial "post-meta-top.html" . }}
2018-07-16 03:22:00 +00:00
</header>
<div class="post">
{{ .Content }}
</div>
2018-07-26 21:08:51 +00:00
{{ partial "post-meta-bottom.html" . }}
2018-07-16 03:22:00 +00:00
{{ partial "post-related.html" . }}
2018-07-26 21:08:51 +00:00
</article>