-
Notifications
You must be signed in to change notification settings - Fork 4
/
index - with CDNs.html
103 lines (86 loc) · 4.7 KB
/
index - with CDNs.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
96
97
98
99
100
101
102
103
<!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="//code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<!-- Loading spinner http://tobiasahlin.com/spinkit/ -->
<link rel="stylesheet" href="/static/css/loadingSpinner.css" />
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous" />
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<!-- No Bootstrap theme yet
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
-->
<!-- Font-awesome icons -->
<link href="//opensource.keycdn.com/fontawesome/4.6.3/font-awesome.min.css" rel="stylesheet" />
<!-- Vue-Resource for calling our backend via REST -->
<script src="//cdn.jsdelivr.net/vue.resource/0.9.1/vue-resource.min.js"></script>
<!-- x-editable https://vitalets.github.io/x-editable/ -->
<link href="//cdnjs.cloudflare.com/ajax/libs/x-editable/1.5.0/bootstrap3-editable/css/bootstrap-editable.css" rel="stylesheet" />
<script src="//cdnjs.cloudflare.com/ajax/libs/x-editable/1.5.0/bootstrap3-editable/js/bootstrap-editable.min.js"></script>
<!-- The georgous TinyMCE WYSIWYG editor -->
<!-- <script src="/static/js/tinymce/tinymce.min.js"></script> -->
<script src='//cdn.tinymce.com/4/tinymce.min.js'></script>
<!-- Sweet alert http://t4t5.github.io/sweetalert/ -->
<script src='//cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.js'></script>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.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>
<footer>
<div class="container text-right">
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/" style="color:grey">
<img alt="Creative Commons License" class="opaqueImg" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png">
</a>
<br/>
</div>
</footer>
</body>
</html>