-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.html.erb
76 lines (60 loc) · 2.87 KB
/
layout.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
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
<!DOCTYPE html>
<html>
<head>
<title>BW Construction | Remodeler & General Contractor (Boulder, CO)</title>
<meta charset="utf-8">
<meta name="description" content="We are a full service residential construction company, owned and operated by Randy Bailey and Donna Werner since 1989, with over 30 years of remodeling experience. We perform new home construction, whole house renovations, room additions, kitchen/bath remodels, second story pop-ups and general home improvements.">
<meta name="author" content="BW Construction">
<meta name="keywords" content="general contractor, builder, remodeler, contractor, fine home builder, Boulder, Colorado, home remodeling, kitchen remodeling, bathroom remodeling, green remodeling, craftsmanship, carpentry, home repair, Front Range, Longmont, Louisville, Superior, Nederland, Lyons">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Merriweather:400,300,700" type="text/css">
<link rel="stylesheet" href="/stylesheets/grid.css" type="text/css">
<link rel="stylesheet" href="/stylesheets/normalize.css" type="text/css">
<link rel="stylesheet" href="/stylesheets/fonts.css" type="text/css">
<link rel="stylesheet" href="/stylesheets/application.css" type="text/css">
<link rel="shortcut icon" href="/images/favicon.ico">
<link rel="apple-touch-icon" href="/images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="/images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="/images/apple-touch-icon-114x114.png">
<script src="/javascripts/jquery-1.7.2.min.js"></script>
<script src="/javascripts/application.js"></script>
<script src="/javascripts/mailer.js"></script>
<script src="/javascripts/responsiveslides.min.js"></script>
<script>
$(function () {
$("#slides_home").responsiveSlides({
// options
});
$("#slides").responsiveSlides({
pager: true,
auto: false,
nav: true
});
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34791940-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body class="<%= @body_class %>">
<header></header>
<div class="wrapper">
<div class="content clearfix">
<div class="container_12">
<%= render '_masthead.html.erb' %>
<%= yield %>
</div>
</div>
</div>
<%= render '_footer.html.erb' %>
<!-- HTML5 IE Enabling Script -->
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</body>
</html>