aboutsummaryrefslogtreecommitdiff
path: root/_pages/index.html
blob: 94d09e85050ae722a6b52c70a68b029142768cf2 (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
27
28
---
permalink: "/index.html"
layout: default
---

<div class="container">
    <div class="content">
        <!-- 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>
    </div>
</div>