aboutsummaryrefslogtreecommitdiffstats
path: root/views/index.ejs
blob: f1f7bb1ebeb2f84fcf63b0ea9d187056586a667e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <title>Blog</title>
    <link rel="stylesheet" href="/css/master.css" type="text/css" media="screen" title="no title" charset="utf-8">
  </head>
  <body>
    <div class="sidenav">
      <% data.mds.forEach(function(md) { %>
        <h2><%= md %></h2>
        <a href="#" target="_blank"><%= md %></a>
      <% }) %>
    </div>
    <%- data.blogHttp %>
  </body>
</html>