{% extends "base.html" %} {% import 'macros/card.html' as macro_card -%} {% import 'macros/media.html' as macro_media -%} {% block content %}
{% set blog = get_section(path="blog/_index.md") %} {% for page in blog.pages %}
{% if loop.index0 == 3 %}
{% break %} {% endif %} {% if page.taxonomies.Tag %} {{ macro_card::create_card(link=page.permalink, img=page.extra.image, title=page.title, subtitle="", abstract=page.summary, tags=page.taxonomies.Tag, date=page.date) }} {% else %} {{ macro_card::create_card(link=page.permalink, img=page.extra.image, title=page.title, subtitle="", abstract=page.summary, tags="", date=page.date) }} {% endif %}
{% endfor %} Plus d'articles {% endblock content %}