-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
40 lines (37 loc) · 1 KB
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>The BeeWare Project</title>
<link rel="icon" href="img/favicon.png">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Cutive">
<style>
body {
font-family: 'Cutive', sans-serif;
}
img {
float: left;
margin: 0 1em;
}
h1 {
font-size: 535%;
margin: 0.5em 1em -0.2em;
}
h2 {
margin: 0.2em 1em;
}
</style>
</head>
<body>
<img src="./img/brutus.png">
<h1>BeeWare</h1>
<h2>Write once. Deploy everywhere.</h2>
<section>
<p>We recently changed our primary domain from <code>pybee.org</code> to <code>beeware.org</code>.</p>
<p>Redirecting to <a href="https://beeware.org/">beeware.org</a>...</p>
</section>
<script>
window.location.replace("https://beeware.org" + window.location.pathname);
</script>
</body>
</html>