-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.shtml
147 lines (135 loc) · 5.26 KB
/
404.shtml
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<meta robots="noindex, nofollow">
<title>Loverboy</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="https://use.typekit.net/uec5wok.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<div id="main-container" class="container">
<header>
<div class="ad">
<div class="leaderboard hidden-sm hidden-xs">
</div>
</div>
<div id="pre-nav">
<div class="social-search">
<h5>Follow us</h5>
<ul>
<li class="f"><a href="#"><span class="sr-only">facebook</span></a></li>
<li class="t"><a href="#"><span class="sr-only">twitter</span></a></li>
<li class="i"><a href="#"><span class="sr-only">instagram</span></a></li>
</ul>
<h5>Your basket</h5>
<a href="#"><img class="aj_emptycart" src="img/cart.svg" alt="cart"/></a>
<div class="form-group">
<form role="search">
<input type="text" class="form-control" placeholder="Search">
<button type="submit" class="btn btn-default"></button>
</form>
</div><!-- end form group-->
</div><!-- end social + search -->
</div><!--end pre-nav-->
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-brand" href="/loverboy"><img src="img/loverboy-logo.png" alt="Loverboy lips logo"/><span class="sr-only">Loverboy</span></a>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span>Menu</span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav nav-pills nav-justified">
<li><a href="#">Home</a></li>
<li class="dropdown">
<a href="#">Shop </a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Interviews</a>
<ul class="dropdown-menu">
<li class="exclusive"><a class="exclusive" href="#" >Exclusives</a></li>
<li class="introducing"><a class="introducing" href="#">Introducing</a></li>
<li class="loveis"><a class="loveis" href="#">Love is ...</a></li>
<li class="welove"><a class="welove" href="#">We love ...</a></li>
<li class="nightlife"><a class="nightlife" href="#">We love the nightlife</a></li>
</ul>
</li>
<li>
<a href="#">Music</a>
</li>
<li class="dropdown">
<a href="#">Competitions</a>
</li>
<li><a href="#">About</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
</header>
<div id="oops-wrapper">
<div id="main-content">
<div class="oops">
<img src="img/404.png" alt="404 with lips graphic" />
<h2>404 Not Found</h2>
<p>Oops! Something's gone wrong, but don't worry! <a href="/">Just click here to go back to the front page ></a>
</p>
</div>
</div>
</div>
<footer>
<div class="row">
<div class="footer-links">
<div class="footer-nav"><a href="#">Media Kit</a></div>
<div class="footer-nav"><a href="#">Credits</a></div>
<div class="footer-nav"><a href="#">Contact</a></div>
<div class="footer-nav"><a href="#">Advertise</a></div>
</div>
</div>
<p>© Copyright 2015 Loverboy Magazine | Developed by <a href="#">adj.Media</a></p>
</footer>
</div><!-- close main container -->
<script type="text/javascript">
$('.carousel').carousel({
interval: 8000
})
</script>
<script>
// media query event handler
if (matchMedia) {
var mq = window.matchMedia("(max-width: 768px)");
mq.addListener(WidthChange);
WidthChange(mq);
}
// media query change
function WidthChange(mq) {
if (mq.matches) {
$('.navbar-default').addClass('navbar-fixed-top');
}
}
</script>
<script>
// media query event handler
if (matchMedia) {
var mq = window.matchMedia("(min-width: 769px)");
mq.addListener(WidthChange);
WidthChange(mq);
}
// media query change
function WidthChange(mq) {
if (mq.matches) {
$('.navbar-default').removeClass('navbar-fixed-top');
}
}
</script>
</body>
</html>