Having an issue with applying link effects in Ruby on Rails. Here is my current code:
<header class="navbar navbarfixed navbar-default navstyle>
<%= link_to "Cocktails", root_path, class: "btn btn-lg", id: "logo" %>
<nav class="cl-effect-5 container">
<a href="#"><span data-hover="new">new</span></a>
<a href="#"><span data-hover="test">test</span></a>
<a href="#"><span data-hover="test">test</span></a>
</nav>
</header>
I am looking to convert the current HTML link style to Ruby without losing the effect (cl-effect-5). I attempted to follow this solution, but encountered a syntax error even after double checking everything...