aboutsummaryrefslogtreecommitdiff
path: root/_pages/index.md
blob: 4b470f86720d8bed9b253f3d2ca6aca20ac092eb (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
29
30
31
---
permalink:    "/index.html"
layout:       default
title:        "Home"
id:           index
---

<div class="page">
    <div class="posts">
        {% for node in site.posts %}
            <div class="post">
                <!-- Date -->
                <span class="post-date">
                    {{ node.latest_update | default: node.date | date_to_long_string }}
                </span>

                <!-- Header -->
                <h1 class="post-title">
                    <a href="{{ node.url | relative_url | uri_escape }}">
                        {{ node.title | smartify | strip_html | normalize_whitespace }}
                    </a>
                </h1>

                <!-- Content -->
                <span class="post-date">
                    {{ node.description | smartify | strip_html | normalize_whitespace }}
                </span>
            </div>
        {% endfor %}
    </div>
</div>