application.html.erb 265 B

1234567891011121314151617
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <%= render 'shared/head' %>
  5. </head>
  6. <body>
  7. <%= render 'shared/navbar' %>
  8. <%= render 'shared/notices' %>
  9. <div class="container">
  10. <%= yield %>
  11. </div>
  12. <%= render 'shared/footer' %>
  13. </body>
  14. </html>