##// END OF EJS Templates
fixed dotted hr for IE6...
fixed dotted hr for IE6 git-svn-id: http://redmine.rubyforge.org/svn/trunk@305 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r164:0b4d4db13130
r302:909954ac342f
Show More
index.rhtml
26 lines | 775 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 <h2><%= l(:label_home) %></h2>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@52 e93f8b46-1217-0410-a6f0-8f06a7374b81
r50
Jean-Philippe Lang
Initial commit...
r2 <div class="splitcontentleft">
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 <p><%= Setting.welcome_text %></p>
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
* all icons replaced (new icons are based on GPL icon set: "KDE Crystal Diamond 2.5" -by paolino- and "kNeu! Alpha v0.1" -by Pablo Fabregat-)...
r154 <h3 class="icon22 icon22-projects"><%=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>
Jean-Philippe Lang
* news rss feed added...
r118
<% content_for :header_tags do %>
<%= auto_discovery_link_tag(:rss, {:controller => 'feeds' , :action => 'news' }) %>
<% end %>