aboutsummaryrefslogtreecommitdiff
path: root/_pages/index.html
blob: 35ee042be996be1cb3f217e95197caafccd37d30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
layout: page
permalink: "index.html"
---

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