-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathbootstrap2-application.html.erb
More file actions
31 lines (31 loc) · 1.03 KB
/
bootstrap2-application.html.erb
File metadata and controls
31 lines (31 loc) · 1.03 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%%= content_for?(:title) ? yield(:title) : "<%= app_name.underscore.titleize %>" %></title>
<meta name="description" content="<%%= content_for?(:description) ? yield(:description) : "<%= app_name.underscore.titleize %>" %>">
<%%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => 'reload' %>
<%%= javascript_include_tag 'application', 'data-turbolinks-track' => 'reload' %>
<%%= csrf_meta_tags %>
</head>
<body>
<%%# application layout styled for Bootstrap 2.3 %>
<header>
<%%= render 'layouts/navigation' %>
</header>
<main role="main">
<div class="container">
<div class="content">
<div class="row">
<div class="span12">
<%%= render 'layouts/messages' %>
<%%= yield %>
</div>
</div>
<footer>
</footer>
</div>
</div>
</main>
</body>
</html>