Blame view

src/app/frontend/views/partial/sale_groups.php 1.4 KB
1ea3b987   Administrator   maby first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  <div class="items">
  <div id="carousel-sale-groups" class="carousel slide" data-ride="carousel">
      <!-- Indicators -->
      <?php $indicators = count($groups) / 5 ?>
  
  
      <!-- Wrapper for slides -->
      <div style="height: 380px" class="carousel-inner" role="listbox">
          <?php foreach($groups as $k => $group): ?>
              <?php if($k % 5 == 0): ?>
                  <div class="item<?= ($k == 0) ? ' active' : '' ?>">
              <?php endif; ?>
                  <?= $this->partial('partial/item_group', ['k' => $k, 'i' => $group, 'limit' => 1000000]) ?>
              <?php if((($k + 1) % 5 == 0) || empty($groups[$k + 1])): ?>
                  </div>
              <?php endif; ?>
          <?php endforeach; ?>
      </div>
  
      <!-- Controls -->
      <?php if($indicators > 1): ?>
          <a class="left carousel-control" href="#carousel-sale-groups" role="button" data-slide="prev">
              <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
              <span class="sr-only">Previous</span>
          </a>
          <a class="right carousel-control" href="#carousel-sale-groups" role="button" data-slide="next">
              <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
              <span class="sr-only">Next</span>
          </a>
      <?php endif; ?>
      <a style="text-align: center" href="<?= $this->seoUrl->setUrl($link)?>">
          <?= $t->_('show_all') ?>
      </a>
  </div>
  </div>