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

14 lines
420 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"}/
%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 11:33:55 +00:00
- flash.each do |key, value|
2015-09-09 15:06:39 +00:00
.pure-alert{ class: "pure-alert-#{key}" }
2015-09-09 11:33:55 +00:00
= value
2015-09-08 14:19:48 +00:00
= yield