tap/app/views/layouts/application.html.haml

18 lines
543 B
Plaintext
Raw Normal View History

2015-09-17 12:05:33 +00:00
!!!
%html
%head
%meta{content: "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
%title Tap - Zeus WPIs drink ordering system
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
= javascript_include_tag 'application', 'data-turbolinks-track' => true
= csrf_meta_tags
%body
= render 'layouts/header'
.container
2015-09-19 09:05:43 +00:00
%h2= yield :title
2015-10-27 21:54:06 +00:00
#flash
= flash_messages
2015-09-17 12:05:33 +00:00
= yield
= render 'layouts/footer'
= debug(params) if Rails.env.development?