aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 3558e0691376bc93ee0cc5e9d90ff8112e09802b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html data-theme="light" lang="en">
<head>
    <% include!("head.html"); %>
</head>
<body>
<% include!("header.html"); %>
<main class="container">
    <section>
        <ul>
        <% for p in &posts { %>
            <li><a href="/post/<%- p.0 %>"><%- p.1 %></a></li>
        <% } %>
        </ul>
    </section>
</main>
</body>
</html>