forked from dmackie/scaleconf.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
129 lines (97 loc) · 5.17 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>404 | Scaleconf</title>
<meta
name="description"
content="ScaleConf is a web scalability conference about working and building for highly scalable websites.
International experts will be talking about principles from the devops movement as well as some
trending technologies and methodologies."
>
<meta name="description" content="404" />
<meta name="author" content="@vhata, @nuknad">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/scaleconf.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Jura' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="images/favicon.ico">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-26903495-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="/"></a>
<ul class="nav pull-right">
<li><a style="padding-right:5px;" href="/contact-us"><img src='/images/envelope.png'/></a></li>
<li><a style="padding-right:2px;" href="http://twitter.com/scaleconf/"><img src='/images/twitter_button.png'/></a></li>
</ul>
</div>
<div class="navbar-alt-inner">
<div class="container">
<ul class="nav nav-pills">
<li class=""><a href="/" style='padding:13px 20px 0 0;'>Home</a></li>
<li class=""><a href="/tell-a-story" style='padding:13px 20px 0 0;'>Speakers</a></li>
<li class=""><a href="/sponsor-packages" style='padding:13px 20px 0 0;'>Sponsors</a></li>
<li class=""><a href="/report-2012" style='padding:13px 20px 0 0;'>2012 Report</a></li>
</ul>
<div class='pull-right'>
<form id="speaker-form" class="paper-form form-horizontal" style='margin:0;'
action="https://docs.google.com/a/scaleconf.org/spreadsheet/formResponse?formkey=dHBkbjNacmZTZGYzZWlEMldjVmd3ZFE6MQ&embedded=true&ifq&submit=Submit"
method="POST" target='hidden_iframe' onsubmit='submitted=true'>
<p><span>Email me when tickets go on sale:</span></p>
<input type='text' id='emailaddress' name='entry.0.single' placeholder='[email protected]'/>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<div class='container'>
<h1>Page not found</h1>
<p class='herotext' style="padding:20px 0 30px 0; width:600px;">
Sorry, we couldn't find that page.
</p>
</div>
<footer>
<div class='container'>
<p class='row'>
<span class='span4'>
© ScaleConf 2012
</span>
<span class='span4 aligncenter'>
<a href="https://github.com/scaleconf/scaleconf.github.com/">Pull requests</a> on this site are welcome!
</span>
<span class='span4 alignright'>
<a href='/contact-us'>contact us</a>
</span>
</p>
</div>
</footer>
<script type='text/javascript'>
submitted=false;
function validate_email() {
failed = false;
email_field = document.getElementById('emailaddress')
if (email_field.value == "") { email_field.setAttribute('style','background:#fee'); failed=true; }
if (failed == false) { window.location='/attend-success'; }
}
</script>
<!-- hidden iframe to open our response which we basically discard. -->
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;" onload="if(submitted){validate_email()}"/>
</body>
</html>