<!DOCTYPE html>
<html data-theme="light" lang="en">
<head>
    <% include!("head.html"); %>
</head>
<body>
<% include!("header.html"); %>
<main class="container">
    <section>
            A gathering of information about some things I do on my spare time.
            You can find me on gitlab, twitter and linkedin.
    </section>
    <section>
        <ul>
        <% for p in &posts { %>
            <li><a href="/posts/<%- p.file %>"><%- p.title %></a></li>
        <% } %>
        </ul>
    </section>
</main>
</body>
</html>