forked from TechHubLondon/TechHubLondon.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
68 lines (58 loc) · 2.9 KB
/
404.html
File metadata and controls
68 lines (58 loc) · 2.9 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Not Found :(</title>
<!-- build:css styles/vendor.css -->
<!-- bower:css -->
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="bower_components/components-font-awesome/css/font-awesome.css" />
<link rel="stylesheet" href="bower_components/github-fork-ribbon-css/gh-fork-ribbon.css" />
<link rel="stylesheet" href="bower_components/github-fork-ribbon-css/gh-fork-ribbon.ie.css" />
<!-- endbower -->
<!-- endbuild -->
<!-- build:css(.tmp) styles/main.css -->
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/animate.css">
<!-- endbuild -->
<!-- build:js scripts/vendor/modernizr.js -->
<script src="bower_components/modernizr/modernizr.js"></script>
<!-- endbuild -->
</head>
<body>
<section class="intro img-background">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="four-oh-four">404</div>
<br>
<img src="images/techhub-logo.png" alt="" class="center-block img-responsive logo-four-oh-four">
<div class="dot-london-sub hidden">
</div>
</div>
</div>
</div>
</section>
<!-- build:js scripts/vendor.js -->
<!-- bower:js -->
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="bower_components/imager.js/Imager.js"></script>
<script src="bower_components/respond/dest/respond.src.js"></script>
<!-- endbower -->
<!-- endbuild -->
<!-- build:js scripts/plugins.js -->
<script src="bower_components/bootstrap/js/dropdown.js"></script>
<script src="bower_components/bootstrap/js/transition.js"></script>
<script src="bower_components/bootstrap/js/collapse.js"></script>
<!-- endbuild -->
<!-- build:js({app,.tmp}) scripts/main.js -->
<script src="scripts/main.js"></script>
<!-- endbuild -->
<script>
var quotes = ['<span>The page you are looking for<br>was not approved by a Shoreditch Hipster</span>', '<span>these are not the droids you are looking for</span>', '<span>The page you are looking for<br>is soooo last season</span>', '<span>The page you are looking for<br>is in a coffee shop somewhere</span>', '<span>The page you are looking for<br>has transcended this realm of mere mortals</span>', '<span>The page you are looking for<br>is currently away getting its beard trimmed/bike fixed/drinking craft beer</span>', '<span>The page you are looking for<br>has left the gas on at home, BRB</span>'],
randno = quotes[Math.floor(Math.random() * quotes.length)];
$('.dot-london-sub').html(randno);
</script>
</body>
</html>