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

22 lines
482 B
Text
Raw Normal View History

2014-11-06 14:46:59 +01:00
<!DOCTYPE html>
<html>
2014-12-09 14:39:27 +01:00
<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>
2014-11-06 14:46:59 +01:00
2014-12-09 14:39:27 +01:00
<body>
<%= render "layouts/header" %>
<div class="container">
2014-11-25 13:09:55 +01:00
2014-12-09 14:39:27 +01:00
<%= yield %>
2014-11-25 13:09:55 +01:00
2014-12-09 14:39:27 +01:00
<%= render "layouts/footer" %>
</div>
2014-12-09 13:10:36 +01:00
2014-12-09 14:39:27 +01:00
<%= debug(params) if Rails.env.development? %>
</body>
2014-11-23 21:12:31 +01:00
</html>