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

{{ category.name }}

{% if category.description %}

{{ category.description }}

{% endif %}
{{ posts.paginator.count }} article{{ posts.paginator.count|pluralize }}
{% for post in posts %}
{% if post.featured_image %}
{{ post.title }}
{% endif %}

{{ post.title }}

{{ post.excerpt }}

{% empty %}

Aucun article dans cette catégorie

Il n'y a pas encore d'articles publiés dans cette catégorie.

Voir tous les articles
{% endfor %}
{% if posts.has_other_pages %}
{% endif %}
{% endblock %}