mirror of
https://0xacab.org/sutty/sutty
synced 2024-12-01 08:56:21 +00:00
20 lines
832 B
Text
20 lines
832 B
Text
%nav{ 'aria-label': 'breadcrumb', role: 'navigation' }
|
|
%ol.breadcrumb
|
|
%li.breadcrumb-item
|
|
= link_to destroy_usuarie_session_path, method: :delete,
|
|
data: { toggle: 'tooltip' }, title: t('help.logout'),
|
|
role: 'button', class: 'btn-text' do
|
|
= fa_icon 'sign-out', title: t('help.logout')
|
|
%li.breadcrumb-item
|
|
= link_to edit_usuarie_registration_path,
|
|
data: { toggle: 'tooltip' }, title: t('help.usuarie.edit') do
|
|
= current_usuarie.email
|
|
|
|
- if @site.try(:persisted?) && (help = @site.try(:config).try(:dig, 'help'))
|
|
%li.breadcrumb-item= link_to t('.help'), help, target: '_blank'
|
|
|
|
- crumbs.compact.each do |crumb|
|
|
- if crumb == crumbs.last
|
|
%li.breadcrumb-item.active{ 'aria-current': 'page' }= crumb
|
|
- else
|
|
%li.breadcrumb-item= crumb
|