all the base and vendor files needed

This commit is contained in:
Mohammad Naghavi 2016-02-11 12:53:19 +01:00
commit 4b26d3e4c0
14 changed files with 12333 additions and 0 deletions

29
index.html Normal file
View file

@ -0,0 +1,29 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>File Browser</title>
<link href="css/vendor/normalize.css" rel="stylesheet" type="text/css">
<link href="css/vendor/skeleton.css" rel="stylesheet" type="text/css">
<link href="css/main.css" rel="stylesheet" type="text/css">
<script src="js/vendor/jquery-2.2.0.min.js"></script>
<script src="js/vendor/moment-with-locales.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<div class="container">
<h1>Files</h1>
<ul id="file-list">
<li>
<i class="file-type directory|file"></i>
<a class="file-name-link" href="#download|browse">file name</a>
<span class="file-date">10.02.2016 10:45</span>
</li>
</ul>
</div>
</body>
</html>