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