You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
407 B

<table class="table table-borderless mb-0">
<tr>
<% years.each_slice(10).to_a.each do |year_arr| %>
<td>
<div class="container-sm p-0">
<% year_arr.each do |year| %>
<strong> <%= link_to year, documents_path(year: year.to_i), class: "text-decoration-none text-dark d-block" %> </strong>
<% end %>
</div>
</td>
<% end %>
</tr>
</table>