templates/iso_list_default.html5 line 18

Open in your IDE?
  1. <form id="<?= $this->formId?>" name="iso<?= rand(); ?>" method="post" enctype="<?= $this->enctype?>">
  2. <div class="formbody" itemscope itemtype="http://schema.org/Product">
  3. <input type="hidden" name="FORM_SUBMIT" value="<?= $this->formSubmit?>">
  4. <input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}">
  5. <input type="hidden" name="AJAX_PRODUCT" value="<?= $this->product_id?>">
  6. <input type="hidden" name="AJAX_MODULE" value="<?= $this->module_id?>">
  7. <h3 itemprop="name"><?= $this->highlightKeywords($this->generateAttribute('name')); ?></h3>
  8. <?= $this->getGallery('images')->generateMainImage(); ?>
  9. <?php if ($this->teaser): ?>
  10. <div class="teaser"><?= $this->highlightKeywords($this->generateAttribute('teaser')); ?></div><?php endif; ?>
  11. <?php /* @var \Isotope\Interfaces\IsotopePrice $price */ if ($price $this->product->getPrice()): ?>
  12. <div class="offer" itemprop="offers" itemscope itemtype="http://schema.org/Offer">
  13. <meta itemprop="priceCurrency" content="<?= \Isotope\Isotope::getConfig()->currency ?>">
  14. <div class="price" itemprop="price" content="<?= \Isotope\Isotope::roundPrice($price->getAmount(1$this->product->getOptions())) ?>"><?= $this->generatePrice(); ?></div><?php if($this->baseprice): ?>
  15. <div class="baseprice"><?= $this->generateAttribute('baseprice'); ?></div><?php endif; ?>
  16. </div>
  17. <?php endif; ?>
  18. <?php if($this->actions): ?>
  19. <div class="submit_container">
  20. <?php if($this->hasOptions): ?>
  21. <div class="options">
  22. <?php foreach( $this->options as $arrOption ): echo $arrOption['html']; endforeach; ?>
  23. </div>
  24. <?php endif; ?>
  25. <?php if ($this->useQuantity): ?>
  26. <div class="quantity_container">
  27. <label for="quantity_requested_<?= $this->raw['id']; ?>"><?= $GLOBALS['TL_LANG']['MSC']['quantity']; ?>:</label> <input type="text" class="text" id="quantity_requested_<?= $this->raw['id']; ?>" name="quantity_requested" placeholder="<?= $this->minimum_quantity?>" maxlength="10">
  28. </div>
  29. <?php endif; ?>
  30. <?php foreach ($this->actions as $action) echo $action->generate($this->product); ?>
  31. </div>
  32. <?php endif; ?>
  33. </div>
  34. </form>