You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
|
|
%nav.top-bar.row{ data: { :topbar => '' } }
|
|
#nav-inner
|
|
%ul.title-area
|
|
/ Title Area
|
|
%li.name
|
|
%h1
|
|
%a{href: "/"} Bike!Bike!
|
|
/ Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone
|
|
%li.toggle-topbar.menu-icon
|
|
%a{href: "#"}
|
|
%span Menu
|
|
%section.top-bar-section
|
|
/ Left Nav Section
|
|
%ul.left
|
|
%li.active
|
|
= link_to (_'Conferences'), :controller => :conferences
|
|
%li
|
|
= link_to (_'Organizations'), :controller => :organizations
|
|
%li
|
|
= link_to (_'Resources'), '/resources'
|
|
/ Right Nav Section
|
|
%ul.right
|
|
- if current_user
|
|
%li.has-form.sign-out.hide-for-small
|
|
= link_to (_"Sign_Out"), :logout, method: :post, :class => 'button'
|
|
%li.user-profile.has-dropdown
|
|
= link_to current_user do
|
|
= image_tag(current_user.avatar_url(:icon))
|
|
%span
|
|
%span.show-for-small=current_user.username
|
|
%ul.dropdown
|
|
%li= link_to 'View Profile', current_user
|
|
%li= link_to 'Edit Profile', edit_user_path(current_user.id)
|
|
- else
|
|
%li.has-form.sign-in
|
|
= link_to (_"Sign_In"), :login, :class => 'button'
|
|
|