12/07/2010, 22:46:35
Il me semblait que tu désirais également comparer au jour d'hier.
Tu vas trouver ton bonheur ici : http://www.smarty.net/manual/en/language...format.php
Essaye ceci :
Tu vas trouver ton bonheur ici : http://www.smarty.net/manual/en/language...format.php
Essaye ceci :
Code :
{foreach from=$items item=entry}
<li>
<span class="fil_info_date">
{if $smarty.now|date_format:"%d-%m" == $entry->postdate|date_format:"%d-%m"}
{$entry->postdate|date_format:"%H:%M"} :</span>
{else} $entry->postdate|date_format:"%d-%m"} :</span>
<span class="fil_info_lien">
<a href="{$entry->moreurl}" title="{$entry->title|escape:htmlall}">{$entry->title|escape}</a>
{$smarty.now|date_format:"%d-%m"}</span>
</li>
{/foreach}