diff options
Diffstat (limited to 'views/archive.ejs')
-rw-r--r-- | views/archive.ejs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/views/archive.ejs b/views/archive.ejs new file mode 100644 index 0000000..36191de --- /dev/null +++ b/views/archive.ejs @@ -0,0 +1,19 @@ +<!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.mds.forEach(function(md) { %> + <ul> + <li><a href=<%= "/mds/"+md %> target="_self" rel="noreferrer noopener" type="text/html"><%= md %></a></li> + </ul> + <% }) %> + </div> + </body> +</html> |