##// END OF EJS Templates
css cleaning...
css cleaning git-svn-id: http://redmine.rubyforge.org/svn/trunk@108 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r96:2b86ef8e28d0
r105:d3600e729fbc
Show More
index.rhtml
23 lines | 673 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@52 e93f8b46-1217-0410-a6f0-8f06a7374b81
r50 <h2><%= $RDM_WELCOME_TITLE || l(:label_home) %></h2>
Jean-Philippe Lang
Initial commit...
r2 <div class="splitcontentleft">
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@52 e93f8b46-1217-0410-a6f0-8f06a7374b81
r50 <% if $RDM_WELCOME_TEXT %><p><%= $RDM_WELCOME_TEXT %></p><br /><% end %>
Jean-Philippe Lang
Initial commit...
r2 <div class="box">
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h3><%=l(:label_news_latest)%></h3>
Jean-Philippe Lang
various modifications to prevent xss...
r96 <%= render :partial => 'news/news', :collection => @news %>
Jean-Philippe Lang
Initial commit...
r2 </div>
</div>
<div class="splitcontentright">
<div class="box">
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h3><%=l(:label_project_latest)%></h3>
Jean-Philippe Lang
Initial commit...
r2 <ul>
<% for project in @projects %>
<li>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <%= link_to project.name, :controller => 'projects', :action => 'show', :id => project %> (<%= format_time(project.created_on) %>)<br />
Jean-Philippe Lang
various modifications to prevent xss...
r96 <%=h project.description %>
Jean-Philippe Lang
Initial commit...
r2 </li>
<% end %>
</ul>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 </div>
Jean-Philippe Lang
Initial commit...
r2 </div>