forked from witheve/eve-experiments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (46 loc) · 2.79 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
<!doctype html5>
<html>
<head>
<title>Eve</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- Run in full-screen mode. -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- Make the status bar black with white text. -->
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<!-- Customize home screen title. -->
<meta name="apple-mobile-web-app-title" content="Web App" />
<!-- Disable phone number detection. -->
<meta name="format-detection" content="telephone=no" />
<link href='https://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
<link href="/css/reset.css" rel="stylesheet" type="text/css"></link>
<link href="/vendor/ionicons.css" rel="stylesheet" type="text/css"></link>
<link href="/css/fonts.css" rel="stylesheet" type="text/css"></link>
<link href="/vendor/codemirror.css" rel="stylesheet" type="text/css"></link>
<link href="/images/favicon.png" rel="icon" type="image/png" />
<link href="/css/global.css" rel="stylesheet" type="text/css"></link>
</head>
<body>
<script src="/vendor/uuid.js" type="text/javascript"></script>
<script src="/vendor/velocity.min.js" type="text/javascript"></script>
<script src="/vendor/pluralize.js" type="text/javascript"></script>
<script src="/vendor/microReact.js" type="text/javascript"></script>
<script src="/vendor/runtime.js" type="text/javascript"></script>
<script src="/bin/root.bundle.js"></script>
<script src="/node_modules/codemirror/lib/codemirror.js" type="text/javascript"></script>
<script src="/node_modules/codemirror/addon/mode/overlay.js" type="text/javascript"></script>
<script src="/node_modules/codemirror/addon/edit/closebrackets.js" type="text/javascript"></script>
<script src="/node_modules/codemirror/mode/markdown/markdown.js" type="text/javascript"></script>
<script src="/node_modules/codemirror/mode/gfm/gfm.js" type="text/javascript"></script>
<script src="/node_modules/codemirror/mode/clojure/clojure.js" type="text/javascript"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-74222157-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>