blob: 675d9e0a0ac5e97b0604538ca22b2af0db414439 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
---
layout: default
---
<ul>
{%- for post in site.posts -%}
<li>
<a href="{{ post.url }}">{{ post.title | escape }}</a> - {{ post.date | date: "%b %-d, %Y" }}
</li>
{%- endfor -%}
</ul>
|