aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 7d69422c6b6cd65f638c9ef009e75fcf1311181f (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
25
26
27
28
29
---
---
<!DOCTYPE HTML>
<HTML>

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

<BODY>
  {% include navigator.html %}
  <div class="jumbotron">
    <h1 class="title">{{ page.title }}</h1>
    <h2>
      <center>{{ page.date | date_to_string }} | By: {{ page.author }}</center>
    </h2>
    <h3>
      <center><a href="/blog.html"><i class="fas fa-arrow-left"></i> Other posts</a></center>
    </h3>
  </div>
  <div class="container-blog">

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

</HTML>