bibb-theme/templates/record/cover.phtml.20190122
2026-02-24 07:35:06 +01:00

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; ?>