2015-09-17 14:05:33 +02:00
|
|
|
!!!
|
|
|
|
%html
|
|
|
|
%head
|
2016-02-16 16:51:36 +01:00
|
|
|
%meta{:name => "viewport", :content => "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}
|
2015-09-17 14:05:33 +02:00
|
|
|
%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 11:05:43 +02:00
|
|
|
%h2= yield :title
|
2015-10-27 22:54:06 +01:00
|
|
|
#flash
|
|
|
|
= flash_messages
|
2015-09-17 14:05:33 +02:00
|
|
|
= yield
|
|
|
|
= render 'layouts/footer'
|
|
|
|
= debug(params) if Rails.env.development?
|