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

17 lines
344 B
Text
Raw Normal View History

2014-11-06 13:46:59 +00:00
<!DOCTYPE html>
<html>
<head>
2014-11-23 20:12:31 +00:00
<title>Tab002</title>
2014-11-06 13:46:59 +00:00
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body>
2014-11-23 20:12:31 +00:00
<%= yield %>
<%= debug(params) if Rails.env.development? %>
2014-11-06 13:46:59 +00:00
</body>
2014-11-23 20:12:31 +00:00
</html>