30 lines
1.3 KiB
Text
30 lines
1.3 KiB
Text
%header.navbar.navbar-fixed-top.navbar-gitlab{ class: nav_header_class }
|
|
%div{ class: fluid_layout ? "container-fluid" : "container-fluid" }
|
|
.header-content
|
|
%button.navbar-toggle{type: 'button'}
|
|
%span.sr-only Toggle navigation
|
|
= icon('bars')
|
|
|
|
.navbar-collapse.collapse
|
|
%ul.nav.navbar-nav.pull-right
|
|
- unless @disable_search_panel
|
|
%li.hidden-sm.hidden-xs
|
|
= render 'layouts/search'
|
|
%li.visible-sm.visible-xs
|
|
= link_to search_path, title: 'Search', data: {toggle: 'tooltip', placement: 'bottom'} do
|
|
= icon('search')
|
|
- if current_user.is_admin?
|
|
%li
|
|
= link_to admin_root_path, title: 'Admin area', data: {toggle: 'tooltip', placement: 'bottom'} do
|
|
= icon('wrench fw')
|
|
- if current_user.can_create_project?
|
|
%li
|
|
= link_to new_project_path, title: 'New project', data: {toggle: 'tooltip', placement: 'bottom'} do
|
|
= icon('plus fw')
|
|
%li
|
|
= link_to destroy_user_session_path, class: 'logout', method: :delete, title: 'Sign out', data: {toggle: 'tooltip', placement: 'bottom'} do
|
|
= icon('sign-out')
|
|
|
|
%h1.title= title
|
|
|
|
= render 'shared/outdated_browser'
|