-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.ctp
79 lines (56 loc) · 2.27 KB
/
header.ctp
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
<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
?>
<div class="container">
<div class="row" >
<div class="span12">
<?php echo $this->Html->image('yyz-logo-bny.jpg',
array('alt' => 'BookstoresNewYork.com'
)) ?>
</div>
</div>
<div class="row" >
<div class="span12" >
<div class="navbar" style="background: #333">
<div class="navbar-inner">
<div class="container" style="background: #333">
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<!-- Be sure to leave the brand out there if you want it shown -->
<a class="brand" href="<?php echo Configure::read('Website.url') ?>/"><?php echo Configure::read('OpenGraph.site_name') ?></a>
<!-- Everything you want hidden at 940px or less, place within here -->
<div class="nav-collapse">
<!-- .nav, .navbar-search, .navbar-form, etc -->
<ul class="nav">
<li><a href="/cities/">Cities</a></li>
<li><a href="/bookstore-features/">Features</a></li>
<li><a href="/bookstore-services/">Services</a></li>
<li class="dropdown">
<a href="#"
class="dropdown-toggle"
data-toggle="dropdown">
Cities
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="/city/new_york/">New York</a></li>
<li class="divider"></li>
<li><a href="/cities/">More...</a></li>
</ul>
</li>
</ul>
<a class="btn btn-danger" href="http://bookstorescanada.wufoo.com/forms/z7x3p9/" onclick="window.open(this.href, null, 'height=1238, width=680, toolbar=0, location=0, status=1, scrollbars=1, resizable=1'); return false">Add Your Business</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>