đź“– Almanach de Juillet 2025
Le mois de Juillet 2025 fut riche en apprentissages et en partages au sein de notre communauté. Nous avons débuté le mois en explorant des thématiques clés, notamment au travers de notre publication phare : Transformer Gemini CLI en un Système Multi-Agents Autonome. Ces échanges réguliers nous permettent de rester au plus près des innovations et de construire ensemble l’avenir de la formation professionnelle.
🗂️ Les articles du mois
{% assign filtered_posts = "" | split: "" %}
{% for post in site.posts %}
{% assign post_year = post.date | date: "%Y" %}
{% assign post_month = post.date | date: "%m" %}
{% if post_year == "2025" and post_month == "07" %}
{% assign filtered_posts = filtered_posts | push: post %}
{% endif %}
{% endfor %}
{% for post in filtered_posts %}
{% assign post_date = post.date | date: "%d/%m/%Y" %}
{% capture footer_text %}Publié le {{ post_date }}{% endcapture %}
{% assign tags_norm = post.tags | join: "," | split: "," %}
{% assign cats_norm = post.categories | join: "," | split: "," %}
{% include universal_card.html item=post type="post" image_type="cover" footer_text=footer_text custom_classes="blog-article" tags=tags_norm categories=cats_norm %}
{% endfor %}