25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
1.1 KiB

  1. <?php $this->extend('block_unsearchable'); ?>
  2. <?php $this->block('content'); ?>
  3. <figure class="<?= $this->containerClass ?>">
  4. <?php if ($this->isVideo): ?>
  5. <video style="width: 100%; height: 100%;" <?= $this->size ?><?php if ($this->poster): ?> poster="<?= $this->poster ?>"<?php endif; ?><?php if ($this->preload): ?> preload="<?= $this->preload ?>"<?php endif; ?> <?= implode(' ', $this->attributes) ?>>
  6. <?php foreach ($this->files as $file): ?>
  7. <source type="<?= $file->mime ?>" src="<?= $file->path.$this->range ?>" title="<?= $file->title ?>">
  8. <?php endforeach; ?>
  9. </video>
  10. <?php else: ?>
  11. <audio<?php if ($this->preload): ?> preload="<?= $this->preload ?>"<?php endif; ?> <?= implode(' ', $this->attributes) ?>>
  12. <?php foreach ($this->files as $file): ?>
  13. <source type="<?= $file->mime ?>" src="<?= $file->path ?>" title="<?= $file->title ?>">
  14. <?php endforeach; ?>
  15. </audio>
  16. <?php endif; ?>
  17. <?php if ($this->caption): ?>
  18. <figcaption class="caption"><?= $this->caption ?></figcaption>
  19. <?php endif; ?>
  20. </figure>
  21. <?php $this->endblock(); ?>