summaryrefslogtreecommitdiffstats
path: root/layouts/blog/single.html
blob: b29ed312f7f0fac3dcf829667130c3578ebf93d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}
<main>
  <div class="container">
    <div class="left flex">
    </div>
    <div class="center flex">
        <h1>{{ .Title }}</h1>
        <section class="post-meta">Posted on {{ .Date.Format "January 2, 2006" }}</section>
        <article>
          {{ .Content }}
        </article>
    </div>
    <div class="right flex">
    </div>
  </div>
</main>
{{ end }}