mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
5 lines
202 B
Plaintext
5 lines
202 B
Plaintext
<% boards.each do |board| %>
|
|
<li class="nav-item<%= board.id == @board.id ? ' active' : '' unless @board.nil? %>">
|
|
<%= link_to board.name, board_path(board), class: 'nav-link' %>
|
|
</li>
|
|
<% end %> |