Create a new JS class for representing files in directory listings.
[armadillo.git] / web_frontend / index.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Armadillo File Manager</title>
5 <script type="text/javascript" src="/fe/armadillo.js" charset="utf-8"></script>
6 <link rel="stylesheet" href="/fe/reset.css" type="text/css" media="screen" charset="utf-8" />
7 <link rel="stylesheet" href="/fe/screen.css" type="text/css" media="screen" charset="utf-8" />
8 </head>
9 <body>
10 <div id="error"></div>
11 <h1>List <span id="pwd">/</span></h1>
12
13 <ul id="ls"></ul>
14
15 <script type="text/javascript" charset="utf-8">
16 var app = new armadillo.App();
17 </script>
18 </body>
19 </html>