{% block particle %}
{% set article_settings = particle.article %}
{% set filter = article_settings.filter %}
{% set sort = article_settings.sort %}
{% set limit = article_settings.limit %}
{% set display = article_settings.display %}
{% set ln = ['','JANVIER','FEVRIER','MARS','AVRIL','MAI','JUIN','JUILLET','AOUT','SEPTEMBRE','OCTOBRE','NOVEMBRE','DECEMBRE'] %}
{% set d = "now"|date("j") %}
{% set m = "now"|date("n") %}
{% set y = "now"|date("Y") %}
{% set s = ln[m]|trans %}
{% set f = particle.date.formats %}
{% if f == 'F Y' %}{% set dt = s~" "~y %}{% endif %}
{% if f == 'j F Y' %}{% set dt = d~" "~s~" "~y %}{% endif %}
<span class="g-array-item-date">
{% if display.date.enabled == 'published' %}
<i class="fa fa-clock-o"></i>{{ article.publish_up| dt }}
{% elseif display.date.enabled == 'modified' %}
<i class="fa fa-clock-o"></i>{{ article.modified| dt }}
{% else %}
<i class="fa fa-clock-o"></i>{{ article.created| dt }}
{% endif %}
</span>
Time to create page: 0.051 seconds