-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
executable file
·95 lines (78 loc) · 3.76 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
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name='viewport', content='width=device-width, initial-scale=1.0'>
<meta name='csrf-token', content='_csrf'>
<title>Liquido</title>
<link rel="stylesheet" href="/static/css/Liquido.css" />
<!-- JQuery -->
<script src="/static/js/jquery-3.2.1.min.js"></script>
<!-- Loading spinner http://tobiasahlin.com/spinkit/ -->
<link rel="stylesheet" href="/static/css/loadingSpinner.css" />
<!-- Bootstrap 3.3.7 -->
<link rel="stylesheet" href="/static/bootstrap-3.3.7-dist/css/bootstrap.min.css"/>
<script src="/static/bootstrap-3.3.7-dist/js/bootstrap.min.js"></script>
<!-- Font-awesome icons -->
<script src="/static/fontawesome-5.10.1/all.min.js"></script>
<!-- x-editable https://vitalets.github.io/x-editable/ -->
<link href="/static/bootstrap3-editable/css/bootstrap-editable.css" rel="stylesheet" />
<script src="/static/bootstrap3-editable/js/bootstrap-editable.min.js"></script>
<!-- iziToast Flash Messages http://izitoast.marcelodolce.com/-->
<link rel="stylesheet" href="/static/iziToast/css/iziToast.min.css" />
<script src="/static/iziToast/js/iziToast.min.js" type="text/javascript"></script>
<!-- The georgous TinyMCE WYSIWYG editor -->
<!-- TODO: only load tinymce once its necessary -->
<script src='/static/tinymce/tinymce.min.js'></script>
<!-- Appear.js for dynamically loading table data -->
<script src='/static/js/appear.min.js'></script>
<!-- Sweet alert http://t4t5.github.io/sweetalert/ -->
<script src='/static/sweetalert/sweetalert.min.js'></script>
<link rel="stylesheet" href="/static/sweetalert/sweetalert.css" />
<!-- Drag and Drop lib https://github.com/bevacqua/dragula -->
<link rel="stylesheet" href="/static/css/dragula.min.css" />
<link rel="shortcut icon" type="image/x-icon" href="/static/img/university.ico" />
</head>
<body>
<div id="app">
<!-- This content will be replaced, once the RootApp.vue has been loaded! -->
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" data-toggle="collapse" data-target=".navbar-collapse" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand"><i class="fa fa-university"></i> Liquido</a>
</div>
<div class="collapse navbar-collapse">
<p class="navbar-right navbar-text">Loading ...</p>
</div>
</div>
</div>
<div style="height:10px"> </div>
<div class="container">
<div class="jumbotron">
<h1>Welcome to Liquido!</h1>
<p>The Liquido webapp is loading. We need to fetch about 5 MB of data. This will only be necessary once. So please stay with us ...</p>
<div id="loadingCircle" class="sk-fading-circle">
<div class="sk-circle1 sk-circle"></div>
<div class="sk-circle2 sk-circle"></div>
<div class="sk-circle3 sk-circle"></div>
<div class="sk-circle4 sk-circle"></div>
<div class="sk-circle5 sk-circle"></div>
<div class="sk-circle6 sk-circle"></div>
<div class="sk-circle7 sk-circle"></div>
<div class="sk-circle8 sk-circle"></div>
<div class="sk-circle9 sk-circle"></div>
<div class="sk-circle10 sk-circle"></div>
<div class="sk-circle11 sk-circle"></div>
<div class="sk-circle12 sk-circle"></div>
</div>
</div>
</div>
</div>
</body>
</html>