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

    {% include header.html %}

  </head>
  <body>

    {% include nav.html %}

    <main>
      <div class="container">
        <div class="container-2">
          <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 {{ site.author }}</p>
        </div>
      </div>
    </main>

    {% include foot.html %}

  </body>
</html>