Skip to content

Commit

Permalink
EPF: Add embargo description to record page (#3643)
Browse files Browse the repository at this point in the history
  • Loading branch information
maccabeelevine committed May 7, 2024
1 parent 0902e4c commit 19d5cf0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion themes/bootstrap3/templates/RecordDriver/EPF/core.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@
if (!empty($holding)): ?>
<li>
<a href="<?=$this->escapeHtmlAttr($holding['URL'])?>"><?=$this->escapeHtml($holding['Name'])?></a>
<?=$this->escapeHtml($holding['CoverageStatement'])?>
<span class="coverage-statement"><?=$this->escapeHtml($holding['CoverageStatement'])?></span>
<?php if (!empty($holding['EmbargoDescription'])): ?>
<span class="embargo-description">(<?=$this->escapeHtml($holding['EmbargoDescription'])?>)</span>
<?php endif; ?>
</li>
<?php endif;
endforeach; ?>
Expand Down

0 comments on commit 19d5cf0

Please sign in to comment.