aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 006643a237521f0b87c035d7114c6e2e3faf5aaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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>