Dann zB so:
PHP-Code:
<?php /* templates/ce_download_pdf.html5 */ ?>
<?php $this->extend('ce_download'); ?>
<?php $this->block('content'); ?>
<?php if ($this->previews): ?>
<?php foreach ($this->previews as $preview): ?>
<?php $image = $preview->getLegacyTemplateData(); ?>
<?php $image['imageHref'] = $this->href; ?>
<?php $this->insert('image', $image) ?>
<?php endforeach ?>
<?php endif ?>
<p class="download-element ext-<?= $this->extension ?>">
<a href="<?= $this->href ?>" title="<?= $this->title ?>" type="<?= $this->mime ?>"><?= $this->link ?> <span class="size">(<?= $this->filesize ?>)</span></a>
</p>
<?php $this->endblock(); ?>
(ungetestet)