vidpush/app/views/layouts/application.html.erb

22 lines
497 B
Plaintext
Raw Normal View History

2014-04-07 18:41:34 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="ROBOTS" content="NOODP" />
2014-04-29 15:01:46 +00:00
<%= favicon_link_tag("/assets/favicon.png") %>
2014-04-07 18:41:34 +00:00
<title><%= title %></title>
<%= stylesheet_link_tag :application, :media => 'all' %>
<%= csrf_meta_tags %>
</head>
<body class="<%= body_class %>">
<div class="col-md-12">
2014-04-22 19:22:36 +00:00
<%= render 'flashes' -%>
<%= render 'layouts/header' %>
<%= yield %>
</div>
2014-04-07 18:41:34 +00:00
<%= render 'javascript' %>
2014-04-28 19:32:10 +00:00
<%= yield :js_foot %>
2014-04-07 18:41:34 +00:00
</body>
</html>