-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
183 lines (151 loc) · 5.71 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
---
# Turn on Jekyll!
---
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cosmic Pi | The cosmic ray detector on your desktop</title>
<meta name='theme-color' content='#2196F3'>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0'/>
<meta name="description" content="The Cosmic Pi project aims to build the world's largest open source distributed cosmic ray telescope. You can be a part of the project, by becoming a Cosmic Pixel!">
<meta name="keywords" content="cosmic ray, detector, cheap, open source, cern">
<meta name="language" content="en">
<meta name="robots" content="index, follow">
<script src="https://use.fontawesome.com/a6e1d461cc.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<style>
html, body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
}
a, a:visited {
color: #428bca;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#header-background {
background-color: #000000;
}
#header-background {
background-color: #000000;
background-image: url("assets/images/galaxy_cosmicpi_background.jpg");
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
width: 100%;
}
header {
margin: auto;
width: 800px;
max-width: calc(100% - 64px);
padding: 8px;
text-align: center;
color: #fff;
}
header img {
width: 450px;
max-width: 100%;
margin-top: 150px;
}
header > h2 {
margin-bottom: 30px;
}
header > #subscribe {
margin: auto;
width: 400px;
max-width: 100%;
background: transparent;
}
header > #subscribe > #mc_embed_signup {
background-color: transparent;
}
header > #subscribe input {
float: left;
margin: 3px 0 !important;
padding: 5px;
}
header > #subscribe .email {
font-size: 16px;
float: left;
width: calc(100% - 10px);
}
header > #subscribe .button {
float: right;
}
header > #social a {
font-size: 30pt;
color: #fff;
margin: 10px;
}
header > #social {
padding: 40px 0;
}
footer {
margin: auto;
width: 800px;
max-width: calc(100% - 64px);
padding: 8px;
text-align: center;
}
footer menu {
padding: 10px 0 60px 0;
}
footer menu a {
padding: 0 10px;
font-size: 20px;
}
footer p {
color: #555555;
}
footer #copyright p {
padding: 0;
margin: 5px;
font-size: 12px;
}
</style>
</head>
<body>
<div id="header-holder">
<div id="header-background">
<header>
<img src="assets/images/logo_small_transp.png" alt="Cosmic Pi Logo">
<h2>The cosmic ray detector on your desktop</h2>
<p>The Cosmic Pi project is still a work in progress! Unfortunately the great electronics shortage and
the war in Ukraine have severly impacted the supply chain for building our detector design but we are still going.
We've got a plan to overcome these obstacles, and in the meantime we have been lucky enough to partner with the
<a href="https://transglobalcar.com/">Transglobal Car Expedition</a> and send a couple of detectors around the world. You can follow the progress of the expedition
and our detectors on the <a href="https://transglobalcar.cosmicpi.org/">live map and dashboard here.</a></p>
<iframe src="https://transglobalcar.cosmicpi.org/d-solo/J87wJQZRk/cosmicpi-dashboard?orgId=1&panelId=29" width="450" height="200" frameborder="0"></iframe>
<p><i>The Cosmic Pi project aims to build the world's largest open source distributed cosmic ray
telescope. You can be a part of the project, by becoming a Cosmic Pixel!</i></p>
<p>Read more about the project on our <a href="https://isy.fuu.mybluehost.me/blog/">blog</a>, or go straight to our <a href="https://github.com/CosmicPi">prototype design</a>.</p>
{% if site.mailchimp %}
<div id="subscribe">
{% include mailchimp-landing.html %}
</div>
{% endif %}
<div id="social">
<a href="http://facebook.com/cosmicpi"><i class="fa fa-facebook"></i></a>
<a href="http://twitter.com/cosmicpi"><i class="fa fa-twitter"></i></a>
<a href="http://github.com/cosmicpi"><i class="fa fa-github"></i></a>
</div>
</header>
</div>
</div>
<footer>
<menu>
<a href="posts">Blog</a> ⋅
<a href="about">About</a> ⋅
<a href="links">Links</a> ⋅
<a href="team">Team</a> ⋅
<a href="media-press">Media / press</a>
</menu>
<div id="copyright">
<p>Copyright © Cosmic Pi Inc. 2015. All Rights Reserved.</p>
<p>Background Image Credit: ESA/Hubble, NASA and H. Ebeling.</p>
</div>
</footer>
</body>