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

76 lines
2.4 KiB
Text
Raw Normal View History

2010-11-05 15:45:05 -07:00
!!! 5
%html
%head
2010-11-06 08:52:58 -07:00
%title
- if content_for? :title
= yield :title
2011-05-13 05:21:42 -07:00
|
2011-05-21 19:58:48 -07:00
- if content_for? :title_category
= yield :title_category
- else
#{t 'app_name'}: #{t '.title_tagline'}
2010-12-11 07:11:56 -08:00
/[if IE]
= include_javascript_libraries :html5
= yield :stylesheets
2010-11-05 15:45:05 -07:00
= stylesheet_link_tag "compiled/screen"
2011-05-20 16:29:04 -07:00
= yield :meta
= open_graph_tags
= csrf_meta_tag
= signed_in_meta_tag
2010-11-05 15:45:05 -07:00
%body{:class => body_class}
= javascript_include_tag "analytics"
2010-11-05 15:45:05 -07:00
#container
= yield :before_title
- if content_for?(:title) && show_title_header?
2010-11-06 08:52:58 -07:00
%h1#title= yield :title
= render 'static/announcement.html'
2010-11-05 15:45:05 -07:00
= yield :before_flashes
= flashes
- if content_for? :content
= yield(:content)
- else
= yield
2010-11-30 13:52:38 -08:00
- if home_link?
2010-11-05 15:45:05 -07:00
%a#home-link{:href => root_path}
%span= t 'app_name'
2010-11-05 15:45:05 -07:00
#userbar
- if user_signed_in?
2010-11-06 15:12:42 -07:00
%span
= t '.userbar.greeting', :user_name => current_user.name
= userbar_contributions_summary(current_user)
= link_to t('.userbar.items'), user_closet_hangers_path(current_user), :id => 'userbar-items-link'
= link_to t('.userbar.outfits'), current_user_outfits_path
= link_to t('.userbar.settings'), Openneo::Auth.remote_settings_url
= link_to t('.userbar.logout'), logout_path_with_return_to
2010-11-05 15:45:05 -07:00
- else
= link_to login_path_with_return_to, :id => 'userbar-log-in' do
= image_tag auth_server_icon_url
%span= t('.userbar.login')
2010-11-05 15:45:05 -07:00
#footer
= form_tag choose_locale_path, :id => 'locale-form' do
= hidden_field_tag 'return_to', request.fullpath
= select_tag 'locale', options_for_select(locale_options, locale)
= submit_tag 'Go'
2010-11-05 15:45:05 -07:00
%ul
%li= link_to t('organization_name'), 'http://openneo.net/'
%li= link_to t('.footer.blog'), 'http://blog.openneo.net/'
%li= link_to t('.footer.source_code'),
'http://github.com/matchu/openneo-impress-rails'
%li= link_to t('.footer.terms'), terms_path
2010-11-05 15:45:05 -07:00
%div
#{t('.footer.contact')}:
2010-11-05 15:45:05 -07:00
%ul
%li= link_to t('.footer.suggestions'), feedback_url
%li= mail_to contact_email, t('.footer.email')
%p= t '.footer.copyright', :year => Date.today.year
= yield(:javascripts)