summaryrefslogtreecommitdiff
path: root/layouts/posts/single.html
blob: e0d20d4f9f8b760367cf67a3ebb94a9eda0affcd (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" }}
<main id="main">
  <article>
    <h1 class="title">{{ .Title }}</h1>
    <p class="posted-on">{{ i18n "posted-on"}}{{ dateFormat (i18n "single-post-date-format") .Date }}</p>
    <section class="body">
      {{ .Content }}
    </section>
  </article>
</main>
{{ end }}