sms-pager/app/views/layouts/application.html.haml

18 lines
550 B
Plaintext
Raw Normal View History

2015-09-12 15:37:05 -05:00
!!!
%html
%head
2015-10-03 08:57:06 -05:00
%meta{ content: "text/html; charset=UTF-8", "http-equiv" => "Content-Type" }/
2015-09-12 15:37:05 -05:00
%title SmsPager
2015-10-03 08:57:06 -05:00
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
2015-09-12 15:37:05 -05:00
= javascript_include_tag 'application', 'data-turbolinks-track' => true
= csrf_meta_tags
2015-09-20 13:26:45 -05:00
= yield :custom_head
2015-09-12 15:37:05 -05:00
%body
2015-09-20 13:26:45 -05:00
= render partial: 'layouts/navigation'
2015-09-21 20:40:07 -05:00
= render partial: 'sub_nav'
= render partial: 'layouts/alerts'
2015-09-12 15:37:05 -05:00
= yield
2015-09-20 13:26:45 -05:00
= render partial: 'layouts/footer'
= yield :modals
= yield :custom_scripts