blob: 5f32994c0f47a88b856b547a3acec2a159646a6e (
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: "posts.html"
layout: default
title: "Posts"
show: true
---
<section class="container list">
<h1 class="title">{{ page.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}</h1>
<ul>
{% for item in site.posts %}
<li>
<span>
<time datetime="{{ item.date | date_to_xmlschema }}">
{{ item.date | date_to_long_string }}
</time>
</span>
<a href="{{ item.url | relative_url | uri_escape }}">
{{ item.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
</a>
</li>
{% endfor%}
</ul>
</section>
|