summaryrefslogtreecommitdiffstats
path: root/_layouts/post.html
blob: d0eb6da7d96e586d0a7583f3a628d52303e75c40 (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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>{{ page.title }}</title>

    {% include header.html %}

  </head>
  <body>

    {% include nav.html %}

    <main>
      <div class="container">
        <h2 class="center" id="title">{{ page.title | upcase }}</h2>
        <h6 class="center">{{ page.date | date_to_long_string | upcase }}</h5>
        <br>
        <div class="twocol justify">{{ content }}</div>
        <p class="post-author right">by {{ page.author }}</p>
      </div>
    </main>

  </body>
</html>