{% extends 'base.html' %} {% load static %} {% block title %}Blog - ECOLUX BTP{% endblock %} {% comment %} {% block extra_css %} {% include 'ecolux_styles.html' %} {% endblock %} {% endcomment %} {% block content %} {% include "ecolux_styles.html" %} {% include "nav.html" %} {% include 'partials/page_header.html' with page_title="Notre Blog" page_description="Découvrez nos derniers articles, conseils et actualités du secteur BTP" badge_text="Actualités & Conseils" header_image="assets/img/blog_h.jpg" breadcrumb=breadcrumb_items %}
Tous les articles {% for category in categories %} {{ category.name }} {% endfor %}
{% for post in posts %}
{{ post.created_at|date:"d F Y" }} {% if post.category %} {{ post.category.name }} {% endif %}

{{ post.title }}

{{ post.excerpt|truncatewords:20 }}

{% empty %}
📝

Aucun article trouvé

Nous travaillons sur de nouveaux contenus. Revenez bientôt !

{% endfor %}
{% if posts.has_other_pages %}
{% endif %}
{% include 'partials/footer.html' %} {% endblock %} {% block extra_js %} {% include 'ecolux_scripts.html' %} {% endblock %}