tap/app/views/layouts/application.html.haml
2015-09-19 11:05:43 +02:00

17 lines
537 B
Plaintext

!!!
%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
%h2= yield :title
= render partial: 'flash'
= yield
= render 'layouts/footer'
= debug(params) if Rails.env.development?