blob: f6f3ca982b6751d9de2f0c3d94df228b02b95591 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE html>
<html data-theme="light" lang="en">
<head>
<% include!("head.html"); %>
</head>
<body>
<div class="layout">
<% include!("header.html"); %>
<main>
<div class="slim-description">
A gathering of information about some things I do on my
spare time. You can find me on gitlab, twitter and
linkedin.
</div>
<div class="blog-list">
<% for p in &posts { %>
<article class="list-item">
<div class="post-title">
<a href="/posts/<%- p.file %>"><%- p.title %></a>
</div>
<span classname="data-label"><%- p.datetime | disp %></span>
</article>
<% } %>
</div>
</main>
</div>
</body>
</html>
|