Commit 1aa8f9e54d2b8eb721e983e441b5af4f574a5eae

Authored by Administrator
1 parent d2770fd6

big commti

Showing 1 changed file with 14 additions and 15 deletions   Show diff stats
frontend/views/event/show.php
... ... @@ -59,22 +59,21 @@ $this->title = $model->name;
59 59 </div>
60 60  
61 61 <?=$model->body?>
62   - </div>
63 62  
64 63  
65   - <div class="content">
66   - <div class="products pn">
67   - <ul>
68   - <?php foreach($productProvider->models as $product) :?>
69   - <?php if(!empty($product->enabledVariants) ):?>
70   - <?= $this->render('../catalog/_product_item', [
71   - 'model' => $product,
72   - 'category' => $product->category,
73   - ])?>
74   - <?php endif;?>
75   - <?php endforeach?>
76   - </ul>
77   - </div>
78   - </div>
  64 + <div class="block-75" itemscope itemtype="http://schema.org/Product">
  65 +
  66 + <div class="catalog_product_list view_table">
79 67  
  68 + <?php foreach($productProvider->models as $product) :?>
  69 + <?php if(!empty($product->enabledVariants) ):?>
  70 + <?= $this->render('../catalog/_product_item', [
  71 + 'model' => $product,
  72 + 'category' => $product->category,
  73 + ])?>
  74 + <?php endif;?>
  75 + <?php endforeach?>
  76 + </div>
  77 + </div>
  78 + </div>
80 79 </div>
81 80 \ No newline at end of file
... ...