blob: 3257c6adc88c6fa50c6cc8e291fcab5a9a29827c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
---
permalink: "index.html"
layout: page
---
{% assign postsByYear = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
<!-- Links to external resources -->
{% include external_links.html %}
{% for year in postsByYear %}
<h2>{{ year.name | strip_newlines | strip_html | strip | normalize_whitespace | slugify }}</h2>
{% for post in year.items %}
<div class="post-item">
<small><time datetime="{{ post.date | date_to_xmlschema}}">{{ post.date | date_to_long_string }}</time></small>
<h4>
<a href="{{ post.url | strip_newlines | strip_html | strip | normalize_whitespace | 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 | truncatewords: 32 | xml_escape }}</p>
</div>
{% endfor %}
{% endfor %}
|