aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 2f0a972f7977b19c9d9cc2f42116784807e7a4b8 (plain) (blame)
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>

<HEAD>
  {% include heading.html %}
  <TITLE>{{ page.title }} | {{ site.title }} Blog</TITLE>
</HEAD>

<BODY>
  {% include navigator.html %}
  <div class="container">
    <h1>{{ page.title }}</h1>
    <p><b>{{ page.date | date_to_string }} | By: {{ page.author }}</b></p>

    {{ content }}
  </div>
  {% include footer.html %}
</BODY>

</HTML>