12 lines
498 B
Smarty
12 lines
498 B
Smarty
<h2>{l s='Tous nos produits' mod='categorieshome'}</h2>
|
|
|
|
<div class="row">
|
|
{foreach from=$categories item=category name=category_index}
|
|
<div class="col-sm-3 category">
|
|
<img src="/img/c/12-0_thumb.jpg" alt="{$category->name}" class="img-responsive">
|
|
<!-- <img src="/img/c/{$category->id}-0_thumb.jpg" alt="{$category->name}"> -->
|
|
<p class="title"><a href="{$link->getCategoryLink($category)}">{$category->name}</a> <span>({$category->nbProducts})</span></p>
|
|
</div>
|
|
{/foreach}
|
|
</div>
|