46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
|
!!!
|
||
|
%html
|
||
|
%head
|
||
|
%meta{:content => "text/html; charset=utf-8", "http-equiv" => "Content-Type"}/
|
||
|
%title Сборочная среда
|
||
|
%script{:src => "http://html5shiv.googlecode.com/svn/trunk/html5.js", :type => "text/javascript"}
|
||
|
= stylesheet_link_tag "tour"
|
||
|
%body
|
||
|
.wrap
|
||
|
%header
|
||
|
.left
|
||
|
.middle
|
||
|
%menu
|
||
|
.logo= link_to image_tag('logo-mini.png', :alt => 'logo'), root_path
|
||
|
= render 'layouts/menu/top', :which_menu => 'top_menu'
|
||
|
.information
|
||
|
= render 'search/form'
|
||
|
- if current_user
|
||
|
.user
|
||
|
.avatar= image_tag avatar_url(current_user), :alt => 'avatar', :height => "30"
|
||
|
.profile
|
||
|
%a{:href => "#"}
|
||
|
= current_user.uname
|
||
|
= image_tag 'expand-white.png', :alt => 'ex'
|
||
|
.both
|
||
|
.both
|
||
|
.droplist-wrap
|
||
|
#droplist.droplist
|
||
|
.a= link_to current_user.uname, current_user
|
||
|
.a= link_to t('layout.settings.label'), profile_settings_path
|
||
|
.a= link_to t('layout.logout'), destroy_user_session_path, :method => :delete
|
||
|
- else
|
||
|
.user
|
||
|
.profile= link_to t("layout.devise.shared_links.sign_in"), new_user_session_path
|
||
|
.right
|
||
|
.both
|
||
|
/ Page
|
||
|
.tour
|
||
|
=image_tag 'tour-top.png', :alt => 'ABF'
|
||
|
.both
|
||
|
%article
|
||
|
= yield
|
||
|
.both
|
||
|
.tour-gap
|
||
|
%footer= render "layouts/menu/bottom"
|
||
|
= render 'layouts/counters' unless current_user.try(:admin?)
|