application.html.erb 272 B

12345678910111213141516
  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. <hr>
  13. <%= render 'shared/footer' %>
  14. </body>
  15. </html>