-
Notifications
You must be signed in to change notification settings - Fork 1
/
bidme.html
102 lines (94 loc) · 4 KB
/
bidme.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
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>BidMe | Home</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,300|Roboto:100,400,700' rel='stylesheet' type='text/css'>
<script>
function resize() {
setInterval(resize, 100);
}
$(document).ready(function(e) {
var Wheight = $(this).height();
var Wwidth = $(this).width();
if (Wwidth < 1054) {
$('#banner').css('height', Wheight - 212);
$('#bannerwrapper').css('height', Wheight - 212);
$('#main_container').css('height', Wheight - 212);
$('#mainwrapper').css('height', Wheight - 212);
} else if (Wwidth < 900) {
$('#banner').css('height', Wheight - 150);
$('#bannerwrapper').css('height', Wheight - 150);
$('#main_container').css('height', Wheight - 150);
$('#mainwrapper').css('height', Wheight - 150);
} else {
$('#banner').css('height', Wheight - 136);
$('#bannerwrapper').css('height', Wheight - 136);
$('#main_container').css('height', Wheight - 136);
$('#mainwrapper').css('height', Wheight - 136);
}
});
</script>
<link rel="stylesheet" type="text/css" href="http://getdatas.com/google-maps.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?v=3&sensor=false"></script>
</head>
<body>
{{renderPage}}
</body>
<template name="home">
<section id="wrapper" class="row">
<nav id="navigation">
<section id="navwrap">
<div id="logosect">
<img src="images/layout_02.png" alt="BidMe Don't miss it">
</div>
<div id="navlist">
<ul id="navlinkssection">
<li><a href="/home">Home</a>
</li>
<li><a href="/bidnow">Bid now</a>
</li>
<li>
{{#if currentUser}}
<a href="/logout">Logout</a>
{{else}}
<a href="/signup">Sign up / Sign in</a>
{{/if}}
</li>
<li><a href="/contacts">Contacts</a>
</li>
</ul>
<div id="navselectbox" class="row">
<select class="row">
<option value="home">Home</option>
<option value="bidnow">Bid now</option>
<option value="signup">Sign up</option>
<option value="contacts">Contacts</option>
</select>
</div>
</div>
</section>
</nav>
<section id="banner">
<div id="bannerwrapper" class="row">
<form class="mozartsbit">
<div id="bannerimage" class="col-md-6 col-sm-12">
<img src="images/bannerimage.png" alt="Mozarts Piano" class="img-responsive">
</div>
<div id="productdetails" class="col-md-6 col-sm-12">
<h1 class="ptitle">Mozart's Piano</h1>
<h2 class="subtitle">1756 - 1791</h2>
<p class="bidstartprice" style="margin-bottom: 2em;">Starting
<span class="currency">USD 10,000.00</span>
</p>
<button class="btnclass" id="mainbit" type="submit">Bid It !</button>
</div>
</form>
</div>
</section>
<footer id="footer">
<div id="footerwrap">
<p>© Copyrights BidMe 2014</p>
</div>
</footer>
</section>
</template>