forked from adiwg/mdEditor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (41 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>mdEditor</title>
<meta name="description" content="The mdEditor is a web application that allows users to author and edit metadata for projects and datasets.">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{content-for "head"}}
<link rel="stylesheet" href="{{rootURL}}assets/vendor.css">
<link rel="stylesheet" href="{{rootURL}}assets/mdeditor.css">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{rootURL}}apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{rootURL}}apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="{{rootURL}}favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="{{rootURL}}favicon-16x16.png" sizes="16x16" />
<meta name="application-name" content="mdEditor - the friendly metadata editor"/>
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="{{rootURL}}mstile-144x144.png" />
<script type="text/javascript">
if(document.location.host + document.location.pathname === 'www.adiwg.org/mdEditor/') {
document.location.replace('https://go.mdeditor.org');
}
</script>
{{content-for "head-footer"}}
</head>
<body>
{{content-for "body"}}
<div class="md-load-indicator">
<div class="md-load-wrapper">
<div class="md-load-spinner">
<div></div>
<div></div>
</div>
</div>
<h3>Loading <span class="text-primary">mdEditor</span>...might take a few seconds ;)</h3>
</div>
<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/mdeditor.js"></script>
{{content-for "body-footer"}}
</body>
</html>