popov.link/_pages/index.html

21 lines
579 B
HTML
Raw Normal View History

---
2018-04-11 03:19:47 +03:00
permalink: "index.html"
2018-04-18 02:45:55 +03:00
layout: page
---
2018-04-18 02:45:55 +03:00
{% 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>
2018-04-11 03:19:47 +03:00
</div>
2018-04-18 02:45:55 +03:00
{% endfor %}