<?php $this->extend('block_searchable');?>

<?php $this->block('content');?>

  <?php if ($this->useImage): ?>
    <figure class="image_container">
      <?=$this->embed_pre?>
        <a href="<?=$this->href?>"<?php if ($this->linkTitle): ?> title="<?=$this->linkTitle?>"<?php endif;?> class="hyperlink_img"<?=$this->attribute?><?=$this->target?><?=$this->rel?>>
            <?php if (isset($this->picture['img']['src']) && pathinfo($this->picture['img']['src'])['extension'] === 'svg'): ?>
                <?=file_get_contents($this->picture['img']['src'])?>
            <?php else: ?>
                <?php $this->insert('picture_default', $this->picture);?>
            <?php endif;?>
        </a>
      <?=$this->embed_post?>
      <?php if ($this->caption): ?>
        <figcaption class="caption"><?=$this->caption?></figcaption>
      <?php endif;?>
    </figure>
  <?php else: ?>
    <?=$this->embed_pre?>
    <a href="<?=$this->href?>" class="hyperlink_txt" title="<?=$this->linkTitle?>"<?=$this->attribute?><?=$this->target?><?=$this->rel?>><?=$this->link?></a>
    <?=$this->embed_post?>
  <?php endif;?>

<?php $this->endblock();?>
