How would I produce something like this in Rails ERB?
<li><a href="portfolio.html">Portfolio <span>Our work</span></a>
My problem is that ruby won't allow me to span inside of the link.
<%= link_to 'portfolio', portfolio_path %>
Anyway to get the Our Works Span inside of that link?
Thanks in Advance.
Solved
<% link_to portfolio_path do %> Portfolio <span>Our work</span> <% end %>