-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.php
106 lines (99 loc) · 3.39 KB
/
error.php
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
<!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-->
<?php include 'nav.php'; ?>
</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>