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

20 lines
778 B
Plaintext
Raw Normal View History

!!!
%html
%head
%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 'http://html5shiv.googlecode.com/svn/trunk/html5.js'
= javascript_include_tag "login"
2012-03-29 23:51:39 +01:00
= csrf_meta_tag
2012-03-29 19:34:45 +01:00
= display_meta_tags :site => APP_CONFIG['project_name'], :reverse => true
%body
2012-02-28 20:43:17 +00:00
-# render :partial => "layouts/flashes"
= yield
= render 'layouts/counters' unless current_user.try(:admin?)
%footer= render "layouts/menu/bottom"