aboutsummaryrefslogtreecommitdiffhomepage
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/directory.ejs17
-rw-r--r--views/file.ejs15
2 files changed, 0 insertions, 32 deletions
diff --git a/views/directory.ejs b/views/directory.ejs
deleted file mode 100644
index 7317794..0000000
--- a/views/directory.ejs
+++ /dev/null
@@ -1,17 +0,0 @@
1<html>
2<head>
3 <title> <%= dirPath %> </title>
4</head>
5
6<body>
7
8Directory <%= dirPath %>:
9
10<ul>
11<% entries.forEach(function (entry) { %>
12 <li><a href="/api/files/<%= dirPath %>/<%= entry %>"><%= entry %></a></li>
13<% }); %>
14</ul>
15
16</body>
17</html> \ No newline at end of file
diff --git a/views/file.ejs b/views/file.ejs
deleted file mode 100644
index 0b62b98..0000000
--- a/views/file.ejs
+++ /dev/null
@@ -1,15 +0,0 @@
1<html>
2<head>
3 <title> File </title>
4</head>
5
6<body>
7
8File <%= filePath %>:
9
10<pre>
11<%= fileContent %>
12</pre>
13
14</body>
15</html> \ No newline at end of file