Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 193
- Log:
First stage commit of Typo 4.1, modified for the ROOL site.
Includes all local modifications but a final pass needs to be
made to delete any files left over from earlier Typo versions
that shouldn't be here anymore. See the 'tags' section of the
repository for a clean Typo 4.1 tree.Note that symlinks to shared files in the RISC OS Open theme
directory have been deliberately included this time around; I
decided that on balance it was better to leave them in as
placeholders, since unlike symlinks in app/views/shared, the
Typo theme structure is not a standard Rails concept.
- Author:
- rool
- Date:
- Wed Apr 04 18:51:02 +0100 2007
- Size:
- 466 Bytes
1 | <div class="entry"> |
2 | <% unless @groupings.empty? -%> |
3 | <% max_counter = @groupings[0].article_counter -%> |
4 | <%= ul_tag_for @grouping_class %> |
5 | <% for grp in @groupings.sort_by{|grp|grp.display_name} -%> |
6 | <li class="<%= calc_distributed_class(grp.article_counter, max_counter, @grouping_class, 0, 10) %>"> |
7 | <%= link_to_grouping(grp) %> |
8 | </li> |
9 | <% end -%> |
10 | </ul> |
11 | <% else -%> |
12 | <p><%= _("There are")%> <%= @grouping_class.to_s.underscore.pluralize %>.</p> |
13 | <% end -%> |
14 | </div> |