17 lines
580 B
Text
17 lines
580 B
Text
!!!
|
|
%html
|
|
%head
|
|
%meta{:name => "viewport", :content => "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}
|
|
%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
|
|
#flash
|
|
= flash_messages
|
|
= yield
|
|
= render 'layouts/footer'
|
|
= debug(params) if Rails.env.development?
|