aboutsummaryrefslogtreecommitdiffstats
path: root/views/index.ejs
blob: 69e8a9d7d6d8736c20373e527979187569287be3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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>
    <script>0</script>
    <div class="sidenav">
      <% data.mds.forEach(function(md) { %>
        <h2><%= md %></h2>
        <a href="#" target="_blank"><%= md %></a>
      <% }) %>
    </div>
    <%- data.blogHttp %>
  </body>
</html>