{% 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 %} {{ macro_card::create_card(link=page.permalink, img=page.extra.image, title=page.title, abstract=page.summary, tags=page.taxonomies.tags, date=page.date) }} {% endfor %}

Tips et découvertes

Des trouvailles rapides

{% set notes = get_section(path="notes/_index.md") %} {% for page in notes.pages %} {% if loop.index0 == 4 %}{% break %}{% endif %} {{ macro_media::create_media(link=page.permalink, img=page.extra.image, title=page.title, abstract=page.summary, tags=page.taxonomies.tags, date=page.date) }} {% endfor %}
{% endblock content %}