application.html.erb 303 B

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