16 lines
281 B
HTML
16 lines
281 B
HTML
<article>
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
{{ if or (not (isset .Params "meta")) (eq .Params.meta true) }}
|
|
{{ partial "aside" . }}
|
|
{{ end }}
|
|
|
|
{{ if not (.Params.replace_site_logo) }}
|
|
{{ partial "featured_image" . }}
|
|
{{ end }}
|
|
|
|
{{ .Content }}
|
|
|
|
</article>
|