summaryrefslogtreecommitdiffstats
path: root/_layouts/post.html
blob: b145364b30790ca5c29a865342fe06185db28766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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="brand center" id="title">{{ page.title | upcase }}</h2>
        <h6 class="center">{{ page.date | date_to_long_string | upcase }}</h5>
        <br>
        <div class="threecol justify">{{ content }}</div>
        <p class="post-author right italics">by {{ page.author }}</p>
      </div>
    </main>

  </body>
</html>