Sha256: eeabc9fb4c430fd5ebd0923c161d87b045e9c3cff85027ca0e5217e9829d4389
Contents?: true
Size: 405 Bytes
Versions: 9
Compression:
Stored size: 405 Bytes
Contents
<% if @tada -%> <h3><%= @tada.title %></h3> <ul> <% for task in @tada.tasks.to_a.slice(0,@sb_config['count'].to_i) -%> <% if task.status == :completed -%> <li><del><a href="<%= task.link %>" title="<%=h task.title %>"><%=h task.title %> </a></del></li> <% else -%> <li><a href="<%= task.link %>" title="<%=h task.title %>"><%=h task.title %> </a></li> <% end -%> <% end -%> </ul> <% end -%>
Version data entries
9 entries across 9 versions & 1 rubygems