-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (62 loc) · 2.12 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
<!DOCTYPE html>
<html>
<head>
<title>Patronage</title>
<script src="https://use.typekit.net/wzp4atu.js"></script>
<script>try{Typekit.load();}catch(e){}</script>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
<link rel="icon" type="image/png" href="/assets/img/favicon.png">
<style>
body {
background: #00B3DD;
color: #fff;
font-family: "franklin-gothic-urw", sans-serif;
font-weight: 300;
}
a {
color: #fff;
text-decoration: underline;
}
a:hover {
color: #fff;
text-decoration: underline;
}
p {
font-size: 18px;
margin-bottom: 24px;
letter-spacing: 1px;
}
.splash-header {
background: #404140;
padding-top: 50px;
padding-bottom: 50px;
}
.splash-content {
padding-top: 50px;
padding-bottom: 50px;
}
</style>
<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-55490258-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="container-fluid splash-header text-center">
<img src="img/splash-logo.png" width="64">
</div>
<div class="container">
<div class="row splash-content">
<div class="col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2 col-lg-6 col-lg-offset-3 text-center">
<p>We're currently experiencing technical difficulties.</p>
<p>Sorry for any inconvenience, we'll be back up and running as soon as we can.</p>
<!-- <p>For status updates, please check out <a href="https://www.twitter.com/patronageorg">@patronageorg</a> on Twitter.</p> -->
</div>
</div>
</div>
</body>
</html>