summaryrefslogtreecommitdiff
path: root/list.md
blob: 18fc7a821b9f05e203322671c00795e62ba2f8b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
layout: static
title: List of articles
---

<h1><a href=''>Lumberjaph</a></h1>

<div id='wrapper'>
    <h3>Posts</h3>

    <ul>
    {% for post in site.posts %}
    <li>
      <a href="{{ post.url }}">{{ post.title }}</a>
      <span class="date">{{ post.date | date_to_string }}</span>
    </li>
    {% endfor %}
    </ul>

</div>