blob: 6d0c1399c2406964174131b8ce5adf1dc6a09cbc (
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="/posts/<%- p %>"><%- p %></a></li>
<% } %>
</ul>
</section>
</main>
</body>
</html>
|