I'm trying to learn how to write more beautiful ERB. How could I format this to look prettier?
<% site.data.navigation.each { |item| %>
<a href="<%= item.link %>"
<% if page.url == item.link %>class="current"<% end %>>
<%= item.name %>
</a>
<% } %>
in particular the wrapping around class="current"
just seems kludgy. I'm looking for the best way that doesn't incorporate some helper method. Is there something cleaner?