summaryrefslogtreecommitdiffstats
path: root/_layouts/post.html
blob: 322e2422a0ee93816af6ef3a14a293844930c849 (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>
    {% include header.html %}
  <body>

    {% include nav.html %}

    <main>
      <div class="container">
        <div class="container-2">
          <h2 class="center" id="title">{{ page.title | upcase }}</h2>
          <h5 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>