Skip to content

Instantly share code, notes, and snippets.

View RitaD's full-sized avatar

Rita D'Aprano RitaD

  • Nebulab
  • Latina, Italy
View GitHub Profile
@RitaD
RitaD / Refinery Frontend Locale Navigation
Created March 16, 2015 10:58
Refinery Frontend Locale Navigation
<% Refinery::I18n.frontend_locales.each do |frontend_locale| %>
<%= content_tag :li, class: I18n.locale == frontend_locale ? 'active' : nil do %>
<%= link_to "#{image_tag("#{frontend_locale}.png")}".html_safe,
refinery.url_for(:locale => frontend_locale) %>
<% end %>
<% end %>