Welcome to mirror list, hosted at ThFree Co, Russian Federation.

article.html « partials « layouts - github.com/funkydan2/hugo-kiera.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e451eeefbd6d1909fc2907c773226883f80afc28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<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>