Skip to content

Instantly share code, notes, and snippets.

@RitaD
Created March 16, 2015 10:58
Show Gist options
  • Save RitaD/ce3d0d7248702d21e085 to your computer and use it in GitHub Desktop.
Save RitaD/ce3d0d7248702d21e085 to your computer and use it in GitHub Desktop.
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 %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment