Files
aux-bieaux-legumes/templates/frontOffice/custom/includes/pictos.html

33 lines
1.4 KiB
HTML

<div class="product-pictos col-md-8">
<table class="table table-pictos">
<tr>
{loop name="features-list" type="feature" product=$product_id}
{if $TITLE|strstr:"Pictogrammes"}
{loop name="feature-values-list" type="feature_value" product=$product_id feature={$ID}}
{assign var="largeurCol" value=12/{$LOOP_TOTAL}}
<td class="col-sm-{$largeurCol} ligne">
{if $TITLE eq "Français"}
<img src="{image file='assets/src/img/flags/fr.png'}" alt="{$TITLE}" title="Produit français"/>
{else}
{if $TITLE eq "AuxBieauxLegumes"}
<img src="{image file='assets/src/img/flags/favicon.ico'}" alt="{$TITLE}" title="Nous cultivons nous même ce produit" class="image-auxbieauxlegumes"/>
{else}
{if $TITLE eq "Local"}
<span class="produit-local">{$TITLE}</span>
<!-- <img src="{image file='assets/src/img/flags/logo-npdc.png'}" alt="{$TITLE}" title="Produit local" class="image-auxbieauxlegumes"/>-->
{else}
{if $TITLE eq "Bio"}
<span class="produit-bio">{$TITLE}</span>
{else}
{$TITLE}
{/if}
{/if}
{/if}
{/if}
</td>
{/loop}
{/if}
{/loop}
</tr>
</table>
</div>