-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 976 Bytes
/
index.html
File metadata and controls
35 lines (32 loc) · 976 Bytes
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title></title>
<script src="vendor/jquery/dist/jquery.min.js"></script>
<script src="vendor/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="vendor/handlebars/handlebars.runtime.js"></script>
<script src="vendor/date-format/dist/date-format.js"></script>
<script src="app/js/templates.js"></script>
<script src="app/js/partials.js"></script>
<script src="app/js/helpers.js"></script>
<script src="app/js/status.js"></script>
<link rel="stylesheet" href="vendor/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="vendor/bootstrap-toggle/css/bootstrap-toggle.min.css">
<style>
.ajax-loader {
top: 33%;
left: 50%;
margin-top: -10px;
margin-left: -10px;
display: block;
position: fixed;
}
</style>
</head>
<body class="container">
<div id="main">
<img class="ajax-loader" src="app/img/loader-big-roller.gif" alt="Loading. Please wait.">
</div>
</body>
</html>