2018-04-04 00:56:25 +03:00
|
|
|
---
|
2018-04-04 02:16:45 +03:00
|
|
|
permalink: "/index.html"
|
|
|
|
layout: default
|
2018-04-04 00:56:25 +03:00
|
|
|
---
|
|
|
|
|
2018-04-07 03:12:28 +03:00
|
|
|
<!-- Header -->
|
|
|
|
<div class="page-heading">Blog</div>
|
|
|
|
<!-- List -->
|
|
|
|
<ul>
|
|
|
|
{% for node in site.posts %}
|
|
|
|
<li class="post-item">
|
|
|
|
<!-- Time -->
|
|
|
|
<span class="meta">
|
|
|
|
<time datetime="{{ node.latest_update | default: node.date | date_to_xmlschema }}">
|
|
|
|
{{ node.latest_update | default: node.date | date_to_string }}
|
|
|
|
</time>
|
|
|
|
</span>
|
|
|
|
<!-- Link -->
|
|
|
|
<a href="{{ node.url | relative_url | uri_escape }}">
|
|
|
|
<span>{{ node.title | smartify | strip_html | normalize_whitespace }}</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|