{% 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="la génèse", 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="la génèse", abstract=page.summary, tags="", date=page.date) }} {% endif %}
{% endfor %} Plus d'articles

Notes diverses

Des sujets qui ne méritent pas un article complet mais dont j'ai envie de parler.

{% set notes = get_section(path="notes/_index.md") %} {% for page in notes.pages %}
{% if loop.index0 == 5 %}{% break %}{% endif %} {% if page.taxonomies.Tag %} {{ macro_card::create_card_note(link=page.permalink, img=page.extra.image, title=page.title, subtitle="la génèse", abstract=page.summary, tags=page.taxonomies.Tag, date=page.date) }} {% else %} {{ macro_card::create_card_note(link=page.permalink, img=page.extra.image, title=page.title, subtitle="la génèse", abstract=page.summary, tags="", date=page.date) }} {% endif %}
{% endfor %} {% set notes = get_section(path="notes/_index.md") %} Plus
{% endblock content %}