-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (30 loc) · 1.59 KB
/
index.html
File metadata and controls
36 lines (30 loc) · 1.59 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Alliance of Genome Resources</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="manifest" href="/manifest.json" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta
name="viewport"
content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width,height=device-height"
/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Droid+Serif:400,700|Lato:300,400,700" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" />
<!-- In later version, Reactome would ideally provide NPM package so that the reactome pathway widget is lazy loaded when reaching the gene page -->
<script async type="text/javascript" src="https://reactome.org/DiagramJs/diagram/diagram.nocache.js"></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/index.jsx"></script>
<!-- html-webpack-plugin will append assets here -->
<noscript>You need to enable JavaScript to run this app.</noscript>
</body>
</html>