forked from directus/directus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
64 lines (53 loc) · 2.21 KB
/
main.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no,maximum-scale=1.0">
<title>directus</title>
<!-- Application styles. -->
<link rel="shortcut icon" href="{{path}}favicon.ico?bust={{cacheBuster}}">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Arvo' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{{cssFilePath}}?bust={{cacheBuster}}">
<link rel="stylesheet" href="{{path}}assets/css/alertify.core.css?bust={{cacheBuster}}">
<link rel="stylesheet" href="{{path}}assets/css/alertify.default.css?bust={{cacheBuster}}">
<script type="text/javascript" src="{{path}}assets/js/util/chromecheck.js?bust={{cacheBuster}}"></script>
</head>
<body>
<div id="splash" style="position:absolute; left:0px; top:0px; right:0px; bottom:0px; background-color:#FFF; z-index:99999999; cursor:progress; background-image:url({{path}}assets/img/directus-logo-throbber.gif); background-repeat:no-repeat; background-position:center center;"></div>
<!-- Main container. -->
<div id="wrap">
<div id="main">
<div id="navbar"></div>
<div class="head">
<div id="tabs" class="container-fluid"></div>
</div>
<div id="content" class="container-fluid">
<!--<div id="alert">
<span class="glyphicon-repeat"></span>
Signing in
</div>-->
</div>
<div id="modal-container"></div>
</div>
<div id="push"></div>
</div>
<div id="footer">
<div class="container-fluid">
Powered by <a href="http://www.getdirectus.com" target="get_directus">Directus (v5.1.b)</a>
</div>
</div>
<div id="messages"></div>
<div class="blocker" id="loader" style="display:none;">
<div id="alert"><span class="glyphicon-refresh"></span></div>
</div>
{{customFooterHTML}}
<script>
window.directusData = {{data}};
</script>
<!-- Application source. -->
<script data-main="{{path}}app/main" src="{{path}}assets/js/libs/require.js?bust={{cacheBuster}}"></script>
<!--<script src="{{path}}dist/release.js?bust={{cacheBuster}}"></script>-->
</body>
</html>