Retrospring/app/views/layouts/_header.html.haml

48 lines
2.4 KiB
Plaintext
Raw Normal View History

2014-11-28 11:23:17 -08:00
%nav.navbar.navbar-inverse.navbar-fixed-top{role: "navigation"}
2014-12-06 08:08:10 -08:00
.container{class: ios_web_app? ? "ios-web-app" : ''}
2014-11-02 04:47:35 -08:00
.navbar-header
%button.navbar-toggle{"data-target" => "#j2-main-navbar-collapse", "data-toggle" => "collapse", type: "button"}
%span.sr-only Toggle navigation
2014-12-11 08:56:52 -08:00
- if user_signed_in?
- unless inbox_count.nil? or notification_count.nil?
2014-12-11 08:56:52 -08:00
%span.icon-bar.navbar--inbox-animation
%span.icon-bar.navbar--inbox-animation
%span.icon-bar.navbar--inbox-animation
- else
%span.icon-bar
%span.icon-bar
%span.icon-bar
2014-12-11 06:49:01 -08:00
- else
%span.icon-bar
%span.icon-bar
%span.icon-bar
%a.navbar-brand{href: "/"}= APP_CONFIG['site_name']
2014-11-02 04:47:35 -08:00
#j2-main-navbar-collapse.collapse.navbar-collapse
2014-11-10 14:46:51 -08:00
- if user_signed_in?
%ul.nav.navbar-nav
2015-06-08 12:51:46 -07:00
= nav_entry t('views.navigation.timeline'), root_path
= nav_entry t('views.navigation.inbox'), "/inbox", badge: inbox_count
- if APP_CONFIG.dig(:features, :discover, :enabled)
= nav_entry t('views.navigation.discover'), discover_path
2014-12-07 12:06:57 -08:00
%ul.nav.navbar-nav.navbar-right
- unless @user.nil?
- unless @user == current_user
2015-06-07 14:52:03 -07:00
%li.hidden-xs{"data-toggle" => "tooltip", "data-placement" => "bottom", title: t('views.actions.group')}
%a{href: '#', data: { target: "#modal-group-memberships", toggle: :modal }}
%i.fa.fa-users.hidden-xs
2015-06-07 14:52:03 -07:00
%span.visible-xs= t('views.actions.group')
2015-02-09 07:48:31 -08:00
= render "layouts/notifications"
2015-06-07 14:52:03 -07:00
%li.hidden-xs{"data-toggle" => "tooltip", "data-placement" => "bottom", title: t('views.actions.ask_question')}
2015-02-09 10:58:58 -08:00
.btn.btn-link.navbar-btn{name: "toggle-all-ask", "data-target" => "#modal-ask-followers", "data-toggle" => "modal", :type => "button"}
%i.fa.fa-pencil-square-o
2015-02-12 07:37:07 -08:00
= render "layouts/profile"
2014-11-10 14:46:51 -08:00
- else
%ul.nav.navbar-nav.navbar-right
2015-06-07 14:52:03 -07:00
= nav_entry t('views.sessions.create'), new_user_session_path
2015-06-08 12:51:46 -07:00
= nav_entry t('views.sessions.new'), new_user_registration_path
2014-12-07 11:13:45 -08:00
- if user_signed_in?
2014-12-10 21:51:26 -08:00
= render 'shared/modal_ask_followers'
%button.btn.btn-primary.btn-fab.visible-xs{"data-target" => "#modal-ask-followers", "data-toggle" => "modal", :type => "button"}
2015-01-03 09:13:18 -08:00
%i.fa.fa-pencil-square-o