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:
- 814 Bytes
1 | <% if @articles.to_a.empty? -%> |
2 | <div class="post"> |
3 | <p><%= _("No articles found")%>...</p> |
4 | </div> |
5 | <% else |
6 | currentmonth = 0 |
7 | currentyear = 0 |
8 | for article in @articles |
9 | if (article.published_at.month != currentmonth || article.published_at.year != currentyear) |
10 | currentmonth = article.published_at.month |
11 | currentyear = article.published_at.year -%> |
12 | <h3 class="archivemonth"><%= Date::MONTHNAMES[article.published_at.month] %> <%= article.published_at.year %></h3> |
13 | <% end -%> |
14 | <div class="archivepost"> |
15 | <%= article.published_at.mday %> - |
16 | <%= link_to_permalink(article,h(article.title)) %> |
17 | <% if !article.categories.empty? %> posted in |
18 | <%= article.categories.collect {|c| link_to_permalink c,c.name }.join(", ") -%> |
19 | <% end -%> |
20 | </div> |
21 | <% end |
22 | end -%> |