aboutsummaryrefslogtreecommitdiff
path: root/blog.html
blob: bc78db5dccc24aec7dbf1978e30a99f7352ac863 (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
---
---

<HTML>
  <HEAD>
    {% include heading.html %}
    <TITLE>Blog | {{ site.title }}</TITLE>
  </HEAD>
<BODY>
  {% include navigator.html %}
  <div class="container">
  <h1>Latest Posts</h1>

<ul>
  {% for post in site.posts %}
    <li class="list-blog">
      <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
      <p><b>{{ post.date | date_to_string }} | By: {{ post.author }}</b></p>
      <p>{{ post.excerpt }}</p>
    </li>
  {% endfor %}
</ul>
</div>
  {% include footer.html %}
</BODY>
</HTML>