]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/blame - views/directory.ejs
initial commit
[perso/Immae/Projets/Nodejs/Surfer.git] / views / directory.ejs
CommitLineData
ca2d3b4d
JZ
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>