---
permalink: "index.html"
layout: page
---

{% for post in site.posts %}
<section>
    <h4>
        <small>
            <time datetime="{{ post.date | date_to_xmlschema }}">
                {{ post.date | date: '%Y-%m-%d' | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
            </time>
        </small>

        <a href="{{ post.url | relative_url | uri_escape }}">
            {{ post.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
        </a>
    </h4>

    <p>{{ post.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}</p>
</section>
{% endfor %}