mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:21:42 +00:00
24 lines
864 B
Text
24 lines
864 B
Text
%nav.navbar
|
|
%a.navbar-brand.d-none.d-sm-block{ href: '/' }
|
|
= inline_svg_tag 'sutty.svg', class: 'black', aria: true,
|
|
title: t('svg.sutty.title'), desc: t('svg.sutty.desc')
|
|
|
|
%nav{ aria: { label: t('.title') } }
|
|
%ol.breadcrumb.m-0.flex-wrap
|
|
- breadcrumb_trail do |crumb|
|
|
%li.breadcrumb-item{ class: crumb.current? ? 'active' : '' }
|
|
- if crumb.current?
|
|
%span.line-clamp-1{ aria: { current: 'page' } }= crumb.name
|
|
- else
|
|
%span.line-clamp-1= link_to crumb.name, crumb.url
|
|
|
|
- if current_usuarie
|
|
%ul.navbar-nav
|
|
- if @site&.tienda?
|
|
%li.nav-item
|
|
= link_to t('.tienda'), @site.tienda_url,
|
|
role: 'button', class: 'btn'
|
|
|
|
%li.nav-item
|
|
= link_to t('.logout'), destroy_usuarie_session_path,
|
|
method: :delete, role: 'button', class: 'btn'
|