You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 rivejä
591 B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>DocStore</title>
  5. <%= csrf_meta_tags %>
  6. <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
  7. <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
  8. </head>
  9. <body class="<%= controller.controller_name %>">
  10. <div id="columns">
  11. <div id="side">
  12. <% if session[:user_id] %>
  13. <%= button_to 'Logout', logout_path, method: :delete %>
  14. <% end %>
  15. </div>
  16. <div id="main">
  17. <%= yield %>
  18. </div>
  19. </div>
  20. </body>
  21. </html>