-
Notifications
You must be signed in to change notification settings - Fork 0
/
logged_in.html
96 lines (84 loc) · 2.54 KB
/
logged_in.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Project</title>
<link rel="stylesheet" href="css/master.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<div id="table-wrapper">
<nav id="main-nav" class="main-nav slideInLeft animated">
<section id="user-panel" class="logged-in">
<img src="img/profile_pic.jpg" alt="Nick Hellemans - Profile picutre" width="105" height="105">
<h2>Hi Nick !</h2>
<div class="view-profile">View your profile</div>
</section>
<section id="navigation">
<ul class="nav-parent">
<li class="parent active"><a href="#find-a-phone">Find a phone</a>
<ul class="subnav">
<li>By brand</li>
<li>By location</li>
<li>Advanded search</li>
<li>View all</li>
</ul>
</li>
<li class="parent"><a href="#sell-a-phone">Sell a phone</a>
<ul class="subnav">
<li>By brand</li>
<li>By location</li>
<li>Advanded search</li>
<li>View all</li>
</ul>
</li>
<li class="parent"><a href="#repair-a-phone">Repair a phone</a>
<ul class="subnav">
<li>By brand</li>
<li>By location</li>
<li>Advanded search</li>
<li>View all</li>
</ul>
</li>
</ul>
</section>
<!-- <section id="social">
<button id="facebook"></button>
<button id="twitter">Spread the love</button>
</section> -->
</nav>
<div class="page-wrap">
<header class="slideInDown animated">
<div id="hamburger">
<a href="#main-nav" class="open-menu">
☰
</a>
<a href="#" class="close-menu">
☰
</a>
</div>
<h1>OURNAME</h1>
</header>
<section id="main" class="fadeIn animated">
<div id="map"></div>
</section>
</div>
</div>
<!--CDN scripts-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCpx1FOANjsAYRyGTXDYFGjSrwJ42R7-kA&sensor=false"></script>
<script src="http://platform.twitter.com/anywhere.js?id=[361899175-JL9rfQJwKw4VGsbpvgnoPUGESTDLKXgYA1jT8hzP]&v=1"></script>
<!--LOCAL scripts-->
<script src="js/modernizer.js"></script>
<script src="js/map.js"></script>
<script src="js/callback.js"></script>
<script src="js/navigation.js"></script>
<script src="js/modalController.js"></script>
<script src="js/sidebarController.js"></script>
<script>
$(function() {
mapController.initialize();
})
</script>
</body>
</html>