-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.html
64 lines (61 loc) · 2.54 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
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<head>
<link rel="stylesheet" media="screen" href="css/foundation/5.0/css/normalize.css">
<link href='http://fonts.googleapis.com/css?family=Raleway:400,700' rel='stylesheet' type='text/css'>
<style>
html {
background: #3c2e47;
background: -moz-radial-gradient(center, ellipse cover, #3c2e47 0%, #292031 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#3c2e47), color-stop(100%,#292031));
background: -webkit-radial-gradient(center, ellipse cover, #3c2e47 0%,#292031 100%);
background: -o-radial-gradient(center, ellipse cover, #3c2e47 0%,#292031 100%);
background: -ms-radial-gradient(center, ellipse cover, #3c2e47 0%,#292031 100%);
background: radial-gradient(ellipse at center, #3c2e47 0%,#292031 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c2e47', endColorstr='#292031',GradientType=1 );
}
body {
font-family: 'Raleway', sans-serif;
padding: 40px;
color: #937CA5;
font-size: 20px;
margin: 0 auto;
width: 800px;
}
#title {
box-shadow: 4px 4px 4px rgba(0,0,0,0.3);
padding: 20px 10px;
background: #FFF;
margin-bottom: 40px;
}
h1 {
text-transform: uppercase;
color: #5B4370;
display: inline-block;
text-align: center;
margin: 0;
}
a {
color: #FFF;
font-weight: bold;
}
p, li {
line-height: 2rem;
text-align: justify;
}
</style>
</head>
<body>
<div id="title">
<h1>InterMine Content Delivery Network</h1>
</div>
<p>This repository hosts web libraries used in the <a href="http://intermine.org">InterMine</a> ecosystem.
<h2>Host your own</h2>
<p>The main repo is hosted by <a href="https://status.github.com/">GitHub</a>, but sometimes it goes down. Before that happens, we encourage you to host your own copy. Your apps will potentially work faster, depending on your location, and you will be fully in control.</p>
<p>Follow these steps:</p>
<ol>
<li>Make a fork of the following repo: <a href="[email protected]:intermine/CDN.git">[email protected]:intermine/CDN.git</a>.</li>
<li>Serve the repo using a static web server, such as <a href="http://nginx.org/en/">nginx</a>.</li>
<li>Point to your CDN by, for example, editing the <code>global.web.properties</code> file on the line where it says <code>head.cdn.location</code>.</li>
</ol>
</body>
</html>