macroblog.rs @ d33e4b11bf059e4a7815a771efcef9d079f0e550

 1<!DOCTYPE html>
 2<html data-theme="light" lang="en">
 3<head>
 4    <% include!("head.html"); %>
 5</head>
 6<body>
 7<% include!("header.html"); %>
 8<main class="container">
 9    <section>
10            A gathering of information about some things I do on my spare time.
11            You can find me on gitlab, twitter and linkedin.
12    </section>
13    <section>
14        <ul>
15        <% for p in &posts { %>
16            <li><a href="/posts/<%- p.file %>"><%- p.title %></a></li>
17        <% } %>
18        </ul>
19    </section>
20</main>
21</body>
22</html>