2010-11-05 15:45:05 -07:00
|
|
|
!!! 5
|
|
|
|
%html
|
|
|
|
%head
|
2010-11-06 08:52:58 -07:00
|
|
|
%title
|
|
|
|
Dress to Impress
|
|
|
|
- if content_for? :title
|
|
|
|
—
|
|
|
|
= yield :title
|
2010-11-05 15:45:05 -07:00
|
|
|
= stylesheet_link_tag "compiled/screen"
|
|
|
|
= javascript_include_tag "http://#{RemoteImpressHost}/assets/js/analytics.js"
|
2010-11-10 13:59:54 -08:00
|
|
|
= csrf_meta_tag
|
2010-11-05 15:45:05 -07:00
|
|
|
%body{:class => body_class}
|
|
|
|
#container
|
2010-11-06 08:52:58 -07:00
|
|
|
- if content_for? :title
|
|
|
|
%h1#title= yield :title
|
2010-11-05 15:45:05 -07:00
|
|
|
= yield :before_flashes
|
|
|
|
= flashes
|
|
|
|
|
|
|
|
- if content_for? :content
|
|
|
|
= yield(:content)
|
|
|
|
- else
|
|
|
|
= yield
|
|
|
|
|
|
|
|
- if content_for? :home_link
|
|
|
|
= yield :home_link
|
|
|
|
- else
|
|
|
|
%a#home-link{:href => root_path}
|
|
|
|
%span Dress to Impress
|
|
|
|
|
|
|
|
#userbar
|
|
|
|
- if user_signed_in?
|
2010-11-06 15:12:42 -07:00
|
|
|
%span
|
|
|
|
== Hey, #{link_to current_user.name, user_contributions_path(current_user)}!
|
|
|
|
== You have #{current_user.points} points.
|
2010-11-10 13:59:54 -08:00
|
|
|
= link_to 'Log out', 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 Log in
|
|
|
|
|
|
|
|
#footer
|
|
|
|
%ul
|
|
|
|
%li
|
|
|
|
%a{:href => "http://openneo.net/", :target => "_blank"} OpenNeo
|
|
|
|
%li
|
|
|
|
%a{:href => "http://blog.openneo.net/", :target => "_blank"} Blog
|
|
|
|
%li
|
|
|
|
%a{:href => "http://forum.openneo.net/", :target => "_blank"} Forum
|
|
|
|
%li
|
|
|
|
%a{:href => "http://github.com/matchu/openneo-impress"} The Source Code
|
|
|
|
%li
|
2010-11-05 15:55:27 -07:00
|
|
|
%a{:href => terms_path} Terms of Use
|
2010-11-05 15:45:05 -07:00
|
|
|
%div
|
|
|
|
Contact:
|
|
|
|
%ul
|
|
|
|
%li
|
|
|
|
%a{:href => "http://openneo.uservoice.com/forums/40720-dress-to-impress"} Feedback
|
|
|
|
%li
|
|
|
|
%a{:href => "mailto:webmaster@openneo.net"} Questions, comments, bug reports
|
|
|
|
%p
|
|
|
|
Images © 2000-2010 Neopets, Inc. All Rights Reserved.
|
|
|
|
Used With Permission
|
|
|
|
= yield(:javascripts)
|