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

16 lines
535 B
Plaintext
Raw Normal View History

2015-09-08 14:19:48 +00:00
!!!
%html
%head
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
2016-02-17 14:09:49 +00:00
%meta{:name => "viewport", :content => "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}
2015-09-08 14:19:48 +00:00
%title Tab
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
= javascript_include_tag 'application', 'data-turbolinks-track' => true
= csrf_meta_tags
%body
2015-09-09 15:43:50 +00:00
.pure-g
2016-02-17 14:09:49 +00:00
= render 'menu' if current_user
2015-09-09 15:43:50 +00:00
.pure-u-1
2016-02-17 14:09:49 +00:00
= render 'flash'
2015-09-09 15:43:50 +00:00
= yield