layout: default


{% include hero.html title=page.summary %} <section class=“section section-grey”>

<div class="container article__container">
  {% for post in site.posts %}
    <article class="article article__preview panel">
      <div class="article__author">
        {% if post.author.avatar %}
          <img src="{{ post.author.avatar }}" />
        {% endif %}
        <span class="article__author-name">{{ post.author }}</span>
      </div>
      <a class="article__link" href="{{ post.url }}" title="{{ post.title }}">
        <h2 class="article__title">{{ post.title }}</h2>
      </a>
      <div class="article__meta">Paru le <time>{{ post.date | date_to_long_string }}</time></div>
      <div class="article__thumbnail">
        <img src="{{ post.image }}" alt="" />
      </div>
      <div class="richtext">
        <p>{{ post.excerpt }}</p>
      </div>
      <a class="article__more" href="{{ post.url }}">Lire la suite…</a>
    </article>
  {% endfor %}
</div>

</section>