rosa-build/app/views/layouts/sessions.html.haml

21 lines
797 B
Plaintext
Raw Normal View History

!!!
%html
%head
2014-01-21 04:51:49 +00:00
%meta{content: "text/html; charset=utf-8", "http-equiv" => "content-type"}
- if controller_name == 'sessions' && action_name == 'new'
= stylesheet_link_tag "login"
2012-03-01 16:05:00 +00:00
- elsif ['registrations', 'passwords'].include?(controller_name) && ['new', 'create', 'edit', 'update'].include?(action_name)
= stylesheet_link_tag "reg_session"
2012-03-29 23:51:39 +01:00
/[if lt IE 9]
= javascript_include_tag 'https://html5shiv.googlecode.com/svn/trunk/html5.js'
= javascript_include_tag "login"
2012-03-29 23:51:39 +01:00
= csrf_meta_tag
2014-01-21 04:51:49 +00:00
= display_meta_tags site: APP_CONFIG['project_name'], reverse: true, separator: '-'
2012-03-30 13:30:39 +01:00
%body
2013-08-28 16:15:28 +01:00
= render 'layouts/noscript'
2012-02-28 20:43:17 +00:00
= yield
2013-09-01 13:18:58 +01:00
= render 'layouts/counters' if !current_user.try(:admin?) && Rails.env.production?
%footer= render "layouts/menu/bottom"