mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
The old Paperclip configuration was very clever and easy to use but it was also a complicated implementation building on the complicated Spree preference system. I simplified this with Active Storage, storing simple references to blob ids and default URLs as backup.
38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
%nav.top-bar.show-for-large-up
|
|
%section.top-bar-section
|
|
%ul.nav-logo
|
|
%li.ofn-logo
|
|
%a{href: main_app.root_path}
|
|
%img{src: ContentConfig.url_for(:logo)}
|
|
%li.powered-by
|
|
%img{src: '/favicon.ico'}
|
|
%span
|
|
= t 'powered_by'
|
|
%a{href: '/'}
|
|
= t 'title'
|
|
%ul.nav-main-menu
|
|
- [*1..7].each do |menu_number|
|
|
- menu_name = "menu_#{menu_number}"
|
|
- if ContentConfig[menu_name].present?
|
|
%li
|
|
%a{href: t("#{menu_name}_url") }
|
|
%span.nav-primary
|
|
= t "#{menu_name}_title"
|
|
%ul.nav-icons-menu
|
|
- if OpenFoodNetwork::I18nConfig.selectable_locales.count > 1
|
|
= render 'shared/menu/language_selector'
|
|
|
|
- if spree_current_user.nil?
|
|
= render 'shared/menu/signed_out'
|
|
- else
|
|
= render 'shared/menu/signed_in'
|
|
|
|
%li.current_hub{"ng-controller" => "CurrentHubCtrl", "ng-show" => "CurrentHub.hub.id", "ng-cloak" => true}
|
|
%a{href: main_app.shop_path}
|
|
%span{ class: "top-bar--current-hub-prefix" }
|
|
= t 'label_shopping'
|
|
= '@'
|
|
%span{ class: "top-bar--current-hub-name" } {{ CurrentHub.hub.name | truncate:25 }}
|
|
%li.cart{"ng-cloak" => true}
|
|
= render partial: "shared/menu/cart"
|