This repository has been archived on 2024-11-01. You can view files and clone it, but cannot push or open issues or pull requests.
blog/themes/kiera/layouts/partials/article.html

16 lines
281 B
HTML
Raw Permalink Normal View History

2024-10-28 16:26:25 -05:00
<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>