summaryrefslogtreecommitdiffstats
path: root/themes/rusticus/layouts/_default/single.html
blob: 653cd71d27cb5020f09a70f3b3a9966e8340f63f (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 class="summary">{{ .Summary }}</p>
    <section>
        {{ .Content }}
    </section>
</main>
{{ partial "aside.html" . }}

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