templates/buetow_2019/image_newslist.html5 line 3

Open in your IDE?
  1. <figure class="image_container<?= $this->floatClass ?>"<?php if ($this->margin): ?> style="<?= $this->margin ?>"<?php endif; ?>>
  2.   <?php if (($this->imageHref || $this->href) && !$this->arrData['noLink'] ): ?>
  3.     <a href="<?= $this->imageHref ?: $this->href ?>"<?php if ($this->linkTitle): ?> title="<?= $this->linkTitle ?>"<?php endif; ?><?= $this->attributes ?>>
  4.   <?php endif; ?>
  5.   <?php $this->insert('picture_default'$this->picture); ?>
  6.   <?php if (($this->imageHref || $this->href) && !$this->arrData->noLink ): ?>
  7.     </a>
  8.   <?php endif; ?>
  9.   <?php if ($this->caption): ?>
  10.     <figcaption class="caption"><?= $this->caption ?></figcaption>
  11.   <?php endif; ?>
  12. </figure>