-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (73 loc) · 1.85 KB
/
index.html
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<title>COMPARTIR | Sharing Is Caring</title>
<link rel="stylesheet" type="text/css" href="src/materialize.css">
<link rel="stylesheet" type="text/css" href="src/index.css">
</head>
<body>
<div class="non-footer">
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper blue row">
<div class="col s4">
<h5 class="white-text">COMPARTIR</h5>
</div>
<div class="col s8 right-align hoverable truncate" id="div-breadcrumbs">
</div>
<div class="col s12 right-align">
<button class="btn btn-small" onclick="upOneLevel()"> up one level</button>
</div>
</div>
</nav>
</div>
<div class="row">
<div class="col l10 offset-l1">
<table id="tbl-files" class="responsive-table striped">
<tr>
<th></th>
<th>Name</th>
<th>Size</th>
<th>Type</th>
<th></th>
</tr>
</table>
</div>
</div>
</div>
<footer class="page-footer blue">
<div class="container row">
<div class="col s6">
<h5>HELP LINKS</h5>
<ul class="white-text">
<li>
<a href="/src/app-help.html" class="white-text" target="_blank">Application Help</a>
</li>
<li>
<a href="/src/web-help.html" class="white-text" target="_blank">Web interface Help</a>
</li>
</ul>
</div>
<div class="col s4 offset-s2">
<h5>Send issues to:</h5>
<ul class="white-text">
<li>
<a href="mailto:[email protected]" class="white-text" target="_blank">[email protected]</a>
</li>
<li>
+263 777 901 802
</li>
</ul>
</div>
</div>
<div class="footer-copyright">
<div class="container center-align">
© 2020 Xavier Mukodi
</div>
</div>
</footer>
<script src="src/jquery.js"></script>
<script src="src/materialize.min.js"></script>
<script src="src/index.js"></script>
</body>
</html>