scratch/content/html/fr/index.erb

31 lines
1 KiB
Text
Raw Normal View History

-----
2010-04-16 14:31:56 +00:00
title: Bienvenue
noSubMenu: true
-----
<%
number_of_articles=5
2010-04-16 14:31:56 +00:00
number_of_char_for_resume=800
language=@item_rep.path.sub(/\/Scratch\//,'').sub(/\/.*$/,'')
last_articles = articles.select do |a|
a.reps[0].path =~ /\/#{language}\//
2010-04-16 14:31:56 +00:00
end
last_articles=last_articles.sort { |x,y| y[:created_at] <=> x[:created_at] }[0..(number_of_articles-1)]
%>
2010-04-16 14:31:56 +00:00
<p>Bonjour et bienvenue sur mon site personnel.</p>
<p>Voici un aperçu<sup>&dagger;</sup> de mes <%= number_of_articles %> derniers articles.</p>
<hr/>
<p class="small">&dagger; approximativement les <%= number_of_char_for_resume %> premiers caractères.</p>
<% last_articles.each do |a| %>
</div>
<h1><span class="date"><%= a[:created_at].strftime( @config[:dateFormat][language.intern] ) %></span> <%= link_to(a[:title], a) %></h1>
<div class="corps">
2010-04-16 14:31:56 +00:00
<%= repair_html ( excerptize( a.reps[0].compiled_content, {:length => number_of_char_for_resume} ) ) %>
2010-04-16 15:05:20 +00:00
<p>
2010-04-19 06:44:03 +00:00
<%= link_to("en lire plus &rarr;", a) %>
2010-04-16 15:05:20 +00:00
</p>
<% end %>