aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 3dbc4818b9b3bfa75fbc318e16ed73230bc3c611 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
---
<!DOCTYPE HTML>
<HTML>

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

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

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

</HTML>