mirror of
https://github.com/danog/sass-site.git
synced 2024-11-27 12:35:03 +01:00
8 lines
254 B
Plaintext
8 lines
254 B
Plaintext
<% n = 1 %>
|
|
<% @items.each do |item| %>
|
|
<li class="r<%= n %> <%= item.has_tag?(:deprecated) ? 'deprecated' : '' %>">
|
|
<%= linkify item, h(item.name(true)) %>
|
|
<small><%= item.namespace.title %></small>
|
|
</li>
|
|
<% n = n == 2 ? 1 : 2 %>
|
|
<% end %> |