aboutsummaryrefslogblamecommitdiffstats
path: root/views/archive.ejs
blob: 72b963db760e9f51ab6244210f14b437a2076d0d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                                                              
                                                       
            
                                                                                                                                             




              
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <title>Archive</title>
    <link rel="stylesheet" href="/master.css" type="text/css" media="screen" title="no title" charset="utf-8">
  </head>
  <body>
    <script>0</script>
    <div class="article">
      <% data.blogPosts.forEach(function(blogPost) { %>
        <ul>
          <li><a href=<%= "/posts/"+blogPost.slug %> target="_self" rel="noreferrer noopener" type="text/html"><%= blogPost.title %></a></li>
        </ul>
      <% }) %>
    </div>
  </body>
</html>