17 lines
426 B
HTML
17 lines
426 B
HTML
<article>
|
|
<header>
|
|
<h1>{{ .Title }}</h1>
|
|
{{ with .Params.subtitle }}
|
|
<span class="post__subtitle">
|
|
{{.}}
|
|
</span>
|
|
{{ end }}
|
|
{{ partial "page-single/post-meta.html" . }}
|
|
</header>
|
|
<div class="post">
|
|
{{ .Content }}
|
|
</div>
|
|
{{ partial "page-single/post-navigation.html" . }}
|
|
{{ partial "page-single/post-related.html" . }}
|
|
{{ partial "page-single/post-comment.html" . }}
|
|
</article>
|