summaryrefslogtreecommitdiffstats
path: root/_layouts/post.html
blob: b6c79a4827b2333213a3d8d525a8745b59ff532a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en-us">
    {% 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>
        </div>
      </div>
    </main>

    {% include foot.html %}

  </body>
</html>