-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.07 KB
/
index.html
File metadata and controls
42 lines (38 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<html>
<head>
<title>Paranoid Filesystems</title>
<script src="scripts/jquery-2.2.2.min.js"></script>
<script src="scripts/filesystems.js"></script>
<script src="scripts/home.js"></script>
<script type="text/javascript">
var fileSystems = getFilesystems();
$(document).ready(function () {
loadSideBar();
setupHome();
});
$('a[target=_blank]').on('click', function(){
require('open')(this.href);
return false;
});
</script>
<script src="scripts/nav.js"></script>
<link rel="stylesheet" type="text/css" href="css/master.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/site.css">
</head>
<body>
<div id="header">
<div class="logo">
<a onclick="rowClicked(-1)">Paranoid<span>Filesystems</span></a>
</div>
</div>
<div id="container">
<div class="sidebar">
<ul id="nav">
</ul>
</div>
<div class="content">
</div>
</div>
</body>
</html>