bouquins-ror/app/views/layouts/application.html.erb

15 lines
313 B
Plaintext
Raw Normal View History

2015-06-28 08:40:19 +00:00
<!DOCTYPE html>
<html>
<head>
2015-06-28 08:52:12 +00:00
<title><%= @title %> | Bouquins</title>
2015-06-28 08:40:19 +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>
<%= yield %>
</body>
</html>