Skip to content

Instantly share code, notes, and snippets.

@gavin-boyd
Created March 30, 2022 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gavin-boyd/de5fbab368c9f1af8416bc4c64867c8e to your computer and use it in GitHub Desktop.
Save gavin-boyd/de5fbab368c9f1af8416bc4c64867c8e to your computer and use it in GitHub Desktop.
bestbets
<#-- Best Bets -->
<#if (response.resultPacket.bestBets)!?size &gt; 0 || curatorAdvertPresent >
<#list response.curator.exhibits as exhibit>
<#if exhibit.titleHtml?? && exhibit.linkUrl??>
<#if exhibit.displayUrl??>
<div class="callout" id="bestbet" role="contentinfo" aria-labelledby="bestbet">
<h3><a href="${exhibit.displayUrl}"><@s.boldicize><#noescape>${exhibit.titleHtml}</#noescape></@s.boldicize></a></h3>
<#if exhibit.descriptionHtml??><p><#noescape>${exhibit.descriptionHtml}</#noescape></p></#if>
</div>
</#if>
</#if>
</#list>
</#if>
<#-- Best Bets -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment