-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_masthead.html.erb
42 lines (37 loc) · 1.7 KB
/
_masthead.html.erb
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
<div class="masthead grid_12 clearfix">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td data-behavior="mobile-hide">
<a href="/"><img src="/images/logo_no_date.png"></a>
</td>
<td>
<div class="logo" data-behavior="mobile-show">
<a href="/"><img src="/images/logo_no_date.png"></a>
</div>
<h1>BW Construction of Boulder</h1>
<h4>Remodeler & General Contractor since 1989</h4>
<div class="mobile_contact" data-behavior="mobile-show">
<span>(303) 449-3298 • <a href="mailto:info@bw-construction.com">Email us</a></span>
</div>
<div class="mobile_nav" data-behavior="mobile-show">
<!-- mobile navigation injected here -->
</div>
</td>
<td data-behavior="mobile-hide">
<img src="/images/donna_and_randy.png" alt="">
</td>
</tr>
</table>
<nav data-behavior="mobile-hide">
<span>(303) 449-3298 • <a href="mailto:info@bw-construction.com">Email us</a></span>
<ul>
<li><a href="/" class="<%= "selected" if @nav_home %>">Home</a></li>
<li><a href="/gallery/" class="<%= "selected" if @nav_gallery %>">Gallery</a></li>
<li><a href="/about/" class="<%= "selected" if @nav_about %>">About Us</a></li>
<li><a href="/testimonials/" class="<%= "selected" if @nav_testimonials %>">Testimonials</a></li>
<li><a href="/process/" class="<%= "selected" if @nav_process %>">Process</a></li>
<li><a href="/resources/" class="<%= "selected" if @nav_resources %>">Resources</a></li>
<li><a href="/contact/" class="<%= "selected" if @nav_contact %>">Contact Us</a></li>
</ul>
</nav>
</div>