vendor/contao/core-bundle/src/Resources/contao/templates/image/image.html5 line 21

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): ?>
  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): ?>
  7.     </a>
  8.   <?php endif; ?>
  9.   <?php if ($this->caption): ?>
  10.     <figcaption class="caption"><?= $this->caption ?></figcaption>
  11.   <?php endif; ?>
  12. </figure>
  13. <?php
  14. if ($this->figure) {
  15.     $this->addSchemaOrg($this->figure->getSchemaOrgData());
  16. }