<div class="widget widget_categories">
<h3 class="widget-title">Categories</h3>
<ul>
{% for category in categories %}
<li class="cat-item">
<a href="{{ path('home_by_category',{'categoryname':category.name }, relative=false) }}" {% if category.id==activecategoryid %} class="bold" {% endif %}>{{ category.name }}</a>
({{ category.countpublishedarticles }})
</li>
{% endfor %}
{% if hasnone %}
<li class="cat-item">
<a href="{{ path('home_by_category',{'categoryname':'none' }, relative=false) }}" {% if activecategoryid==-2%} class="bold" {% endif %}>(aucune)</a>
({{ countnone }})
</li>
{% endif %}
</ul>
</div>