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

18 lines
554 B
Plaintext
Raw Normal View History

2015-09-12 15:37:05 -05:00
!!!
%html
%head
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
%title SmsPager
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
= 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/alerts'
= render partial: 'layouts/navigation'
2015-09-21 20:40:07 -05:00
= render partial: 'sub_nav'
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