aboutsummaryrefslogtreecommitdiff
path: root/template/post.html
blob: 88a2c7fbc813e7aab0aa2a6854ec0a47303b2efb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<html lang="en">

  <head>
    {{template "_meta.html"}}

    <title>{{.Title}}</title>
    <meta name="description" content="{{.Description}}">
  </head>

  <body>

    {{template "_navigation.html"}}

    <main class="wrapper">
      <article itemtype="http://schema.org/Article">
        <header>
          <h1 itemtype="headline">{{.Title}}</h1>
          <time>{{.Created}}</time>
        </header>
        <div>
          {{.Content}}
        </div>
      </article>
    </main>

    {{template "_includes.html"}}

  </body>

</html>