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

21 lines
438 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" />
<title><%= title %></title>
<%= stylesheet_link_tag :application, :media => 'all' %>
<%= csrf_meta_tags %>
</head>
<body class="<%= body_class %>">
<%= render 'flashes' -%>
2014-04-07 21:24:08 +00:00
<div class="row">
<div class="small-12 medium-12 large-12 columns">
<%= yield %>
</div>
</div>
2014-04-07 18:41:34 +00:00
<%= render 'javascript' %>
</body>
</html>