<% nav_items_default = [ { url: '#home-navigation', i18n_key: 'navbar.main.home' }, { url: '#home-navigation', i18n_key: 'navbar.main.company', page: 'company' }, { url: '#about_us-navigation', i18n_key: 'navbar.main.about_us' }, { url: '#services-navigation', i18n_key: 'navbar.main.services' }, { url: '#packages-navigation', i18n_key: 'navbar.main.packages' }, { url: '#features-navigation', i18n_key: 'navbar.main.features' }, { url: '#footer-navigation', i18n_key: 'navbar.main.contact_us' } ] nav_items_default.reverse! if @dir == 'rtl' %> <% nav_items_company_sector = [ { url: '', i18n_key: 'navbar.main.home', page: 'home' }, { url: '#home-navigation', i18n_key: 'navbar.main.company', page: 'company' }, { url: '#why_us-navigation', i18n_key: 'navbar.main.why_us' }, { url: '#succee_partner-navigation', i18n_key: 'navbar.main.succee_partner' }, { url: '#for_your-navigation', i18n_key: 'navbar.main.for_your' }, { url: '#services-navigation', i18n_key: 'navbar.main.services' }, { url: '#features-navigation', i18n_key: 'navbar.main.features' }, { url: '#footer-navigation', i18n_key: 'navbar.main.contact_us' } ] nav_items_company_sector.reverse! if @dir == 'rtl' %> <% if @page == 'company_sector' %> <% nav_items_company_sector.each do |item| %> <%= content_tag :li do %> <% if item[:page] == 'home' %> <%= link_to I18n.t(item[:i18n_key]), '', onclick: "api_change_home_language('#{@local}')" %> <% elsif item[:page] == 'company' %> <%= link_to I18n.t(item[:i18n_key]), '', onclick: "api_change_company_sector()" %> <% else %> <%= link_to I18n.t(item[:i18n_key]), item[:url] %> <% end %> <% end %> <% end %> <% else %> <% nav_items_default.each do |item| %> <%= content_tag :li do %> <% if item[:page] == 'company' %> <%= link_to I18n.t(item[:i18n_key]), '', onclick: "api_change_company_sector()" %> <% elsif @page != 'home' %> <%= link_to I18n.t(item[:i18n_key]), '', onclick: "api_change_home_language('#{@local}')" %> <% else %> <%= link_to I18n.t(item[:i18n_key]), item[:url] %> <% end %> <% end %> <% end %> <% end %>