Skip to content

Instantly share code, notes, and snippets.

@npflood
Created October 2, 2014 20:10
Show Gist options
  • Save npflood/d3003ee368ca96c70e26 to your computer and use it in GitHub Desktop.
Save npflood/d3003ee368ca96c70e26 to your computer and use it in GitHub Desktop.
Quick and Dirty (clean it up yourself) language navigation for Refinery
<% Refinery::I18n.frontend_locales.each do |locale| %>
<li <% if I18n.locale == locale %>class="active"<% end %>>
<a href="<%=refinery.url_for(:locale => locale)%>">
<%=Refinery::I18n.locales[locale]%>
</a>
</li>
<% end %>
@RitaD
Copy link

RitaD commented Mar 16, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment