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