summaryrefslogtreecommitdiffstats
path: root/themes/rusticus/layouts/_default/single.html
blob: 3385c55e4b06eac8af9245036dc4ac9c6fe20495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ partial "header/header.html" . }}

<main class="single">
    <h1>{{ .Title }}</h1>
    <p>{{ .Summary }}</p>
    <section>
        {{ .Content }}
    </section>
</main>
{{ partial "aside.html" . }}

{{ partial "footer/footer.html" . }}