f74f174bf25491835ecfabe8e77fee093992937b
[mkws-moved-to-github.git] / src / templates / Image.handlebars
1 {{!
2 Records presented as images.
3
4 The non-metadata keys enable an optional link to display an AJAX popup that
5 fetches additional record detail.
6
7 hits:
8   containerClass - partial class attribute for element containing a record
9   detailLinkId - id for the element triggering detail display
10   detailClick - a click event handler for details
11   renderedDetails - active record details rendered from the Record template
12   md-* - metadata fields passed through from backend
13 }}
14 {{#each hits}}
15   <a href="#" id="{{detailLinkId}}" onclick="{{detailClick}}">
16     {{#mkws-first md-thumburl}}
17       <img src="{{this}}" alt="{{../md-title}}"/>
18     {{/mkws-first}}
19     <br/>
20   </a>
21 {{/each}}