templates/relaunch2017/iso_reader_subsite.html5 line 11

Open in your IDE?
  1. <form action="<?php echo $this->action?>" id="<?php echo $this->formId?>" name="iso<?php echo rand(); ?>" method="post" enctype="<?php echo $this->enctype?>">
  2.     <input type="hidden" name="FORM_SUBMIT" value="<?php echo $this->formSubmit?>">
  3.     <input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}">
  4.     <input type="hidden" name="AJAX_PRODUCT" value="<?php echo $this->product_id?>">
  5.     <input type="hidden" name="AJAX_MODULE" value="<?php echo $this->module_id?>">
  6.     <div class="col-md-5 col-sm-12">
  7.         <div class="service-box">
  8.             <div class="service-thumb">
  9.                 <?php echo $this->getGallery('images')->generateMainImage(); ?>
  10.                 <div class="space20"></div>
  11.                 <div class="product-thumbnails">
  12.                     <?php echo $this->getGallery('images')->generateGallery(); ?>
  13.                 </div>
  14.             </div>
  15.         </div>
  16.     </div>
  17.     <div class="col-md-7 col-sm-12">
  18.         <h2><?php echo $this->generateAttribute('name'); ?> verstehen</h2>
  19.         <div class="border-width"></div>
  20.         <div class="product-parameter-infos">
  21.             <ul class="list-unstyled">
  22.                 <li><span>Magazin Nr.: </span><?= $this->sku?></li>
  23.                 <li><span>ISBN: </span><?= $this->isbn_nummer?></li>
  24.                 <li><span>Erscheinungsjahr: </span> <?= $this->erscheinungsjahr?></li>
  25.                 <li><span>Redaktion: </span> <?= $this->redaktion?></li>
  26.             </ul>
  27.         </div>
  28.         <div class="articleTeaser"><?php echo $this->generateAttribute('teaser'); ?></div>
  29.         <?php if($this->hasOptions): ?>
  30.             <div class="options">
  31.                 <?php foreach( $this->options as $arrOption ): echo $arrOption['html']; endforeach; ?>
  32.             </div>
  33.         <?php endif; ?>
  34.         <?php if($this->buttons): ?>
  35.             <div class="submit_container">
  36.                 <?php if ($this->useQuantity): ?>
  37.                     <div class="form-group quantity_container">
  38.                         <label for="quantity_requested_<?php echo $this->raw['id']; ?>"><?php echo $GLOBALS['TL_LANG']['MSC']['quantity']; ?>:</label>
  39.                         <input type="text" class="form-control text" id="quantity_requested_<?php echo $this->raw['id']; ?>" name="quantity_requested" placeholder="<?php echo $this->minimum_quantity?>" maxlength="10">
  40.                     </div>
  41.                 <?php endif; ?>
  42.                 <?php foreach( $this->buttons as $name => $button ): ?>
  43.                     <div class="row">
  44.                         <div class="col-md-6">
  45.                             <div class="offer" itemscope itemtype="http://schema.org/Offer">
  46.                                 <div class="price" itemprop="price"><?php echo $this->generatePrice(); ?></div>
  47.                                 <?php if($this->baseprice): ?>
  48.                                     <div class="baseprice"><?php echo $this->generateAttribute('baseprice'); ?></div>
  49.                                 <?php endif; ?>
  50.                             </div>
  51.                         </div>
  52.                         <div class="col-md-6">
  53.                             <input type="submit" class="submit btn btn-xl btn-skin margin-b-20 <?php echo $name?> <?= $button['class'?>" name="<?php echo $name?>" value="<?php echo $button['label']; ?>">
  54.                         </div>
  55.                     </div>
  56.                 <?php endforeach; ?>
  57.             </div>
  58.         <?php endif; ?>
  59.     </div>
  60.     <div class="row editorial-content">
  61.         <div class="col-sm-12">
  62.             <?php if ($this->sku): ?>
  63.             <?php endif; if ($this->description): ?>
  64.                 <div class="description" itemprop="description">
  65.                     <?php echo $this->generateAttribute('description'); ?>
  66.                 </div>
  67.             <?php endif; ?>
  68.         </div>
  69.     </div>
  70. </form>