<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title>{{ site.name }}</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />

        <link rel="stylesheet" href="{{ static('style.css') }}">
    </head>
    <body>
        <h1>{{ site.name }} - {{ site.custom.coolProperty }}</h1>
        {% for article in articles %}
        <a href="post/{{ article.slug }}.html" class="post-short">
            <article>
                <header>
                    <p class="title">{{ article.title }}</p>
                    <p class="description">{{ article.summary }}</p>
                </header>
            </article>
        </a>
        {% endfor %}
    </body>
</html>