summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: cf77864965421db9479626446fa0d77a2a846825 (plain)
1
2
3
4
5
6
7
8
9
10
{{ define "main" }}
<main id="main">
  <article>
    <h1 class="title">{{ .Title }}</h1>
    <section class="body">
      {{ .Content }}
    </section>
  </article>
</main>
{{ end }}