{% extends 'base.html' %} {% load static %} {% block title %}Blog - ECOLUX BTP{% endblock %} {% block content %}

Notre Blog

Découvrez nos derniers articles, conseils et actualités sur la construction au Sénégal

Tous les articles {% for category in categories %} {{ category.name }} {% endfor %}
{% for post in posts %}
{% if post.featured_image %}
{{ post.title }} {% if post.category %} {{ post.category.name }} {% endif %}
{% endif %}
{{ post.published_at|date:"d F Y" }} {{ post.reading_time }} min de lecture

{{ post.title }}

{{ post.excerpt }}

{% empty %}

Aucun article trouvé

Essayez de modifier vos critères de recherche.

{% endfor %}
{% if posts.has_other_pages %}
{% endif %}
{% endblock %}