No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

29 líneas
862 B

  1. <?php $this->extend('block_searchable'); ?>
  2. <?php $this->block('content'); ?>
  3. <figure class="image_container"<?php if ($this->margin): ?> style="<?= $this->margin ?>"<?php endif; ?>>
  4. <?php if ($this->href): ?>
  5. <a href="<?= $this->href ?>"<?php if ($this->linkTitle): ?> title="<?= $this->linkTitle ?>"<?php endif; ?><?= $this->attributes ?>>
  6. <?php endif; ?>
  7. <?php
  8. $xml = new SimpleXMLElement(file_get_contents($this->singleSRC));
  9. $xml->addAttribute("width",$this->picture["img"]["width"]);
  10. $xml->addAttribute("height",$this->picture["img"]["height"]);
  11. echo $xml->asXML();
  12. ?>
  13. <?php if ($this->href): ?>
  14. </a>
  15. <?php endif; ?>
  16. <?php if ($this->caption): ?>
  17. <figcaption class="caption"><?= $this->caption ?></figcaption>
  18. <?php endif; ?>
  19. </figure>
  20. <?php $this->endblock(); ?>