tap/app/views/layouts/application.html.erb
2014-11-25 13:09:55 +01:00

25 lines
447 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>Tab002</title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= render "layouts/header" %>
<div class="container">
<%= yield %>
<%= render "layouts/footer" %>
</div>
<%= debug(params) if Rails.env.development? %>
</body>
</html>