Rajout du module View pour pouvoir afficher dans les menus la liste des marques

This commit is contained in:
2023-12-02 15:42:11 +01:00
parent fc6a693f1c
commit 97a75fbf2a
37 changed files with 4471 additions and 5 deletions

View File

@@ -0,0 +1,29 @@
{extends file="layout.tpl"}
{block name="main-content"}
<section id="our-brands">
<div class="brands-heading">
<h2 class="block-title">{intl l="Our brands" d="brandsonhome"}</h2>
</div>
<div id="brands">
<div class="brands-content">
<ul class="list-unstyled row" style="text-align: center">
{loop type="brand" name="brand_list"}
{loop type="image" name="brand_images" brand={$ID} width=100}
<li class="item col-xs-6 col-sm-4 col-md-2">
<article class="row" itemscope itemtype="http://schema.org/Product">
<img src="{$IMAGE_URL}" alt="{$TITLE}" />
</article>
</li>
{/loop}
{/loop}
</ul>
</div>
</div>
</section>
{/block}
{block name="stylesheet"}
{hook name="brand.stylesheet"}
{/block}