7 lines
469 B
PHTML
Executable File
7 lines
469 B
PHTML
Executable File
<?php /* Display thumbnail if appropriate: */ ?>
|
|
<?php if ($cover): ?>
|
|
<img alt="<?=$this->transEsc('Cover Image')?>" <?php if ($linkPreview): ?>data-linkpreview="true" <?php endif; ?>class="recordcover" src="<?=$this->escapeHtmlAttr($cover); ?>"/>
|
|
<?php else: ?>
|
|
<img src="<?=$this->url('cover-unavailable')?>" <?php if ($linkPreview): ?>data-linkpreview="true" <?php endif; ?>class="recordcover" alt="<?=$this->transEsc('No Cover Image')?>"/>
|
|
<?php endif; ?>
|