blob: bfc49586c828d936144a2b8a9a0102e2361c1173 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 | ---
permalink: "index.html"
layout: page
---
{% for post in site.posts %}
  <div class="header">
    <h2 class="header-title">
      <a href="{{ post.url | relative_url | uri_escape }}">
        {{ post.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
      </a>
    </h2>
    {% if post.description %}
      <p class="header-annotation">
        {{ post.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
      </p>
    {% endif %}
    <time>{{ post.date | date_to_long_string }}</time>
  </div>
{% endfor %}
 |