do not escape facet title
[mkws-moved-to-github.git] / src / templates / details.handlebars
1 {{!
2 Full record display.
3
4 Top level object is metadata from Service Proxy / Pazpar2
5 }}
6 <table>
7   <tr>
8     <th>{{mkws-translate "Title"}}</th>
9     <td>
10       {{md-title}}
11       {{#if md-title-remainder}}
12         ({{md-title-remainder}})
13       {{/if}}
14       {{#if md-title-responsibility}}
15         <i>{{md-title-responsibility}}</i>
16       {{/if}}
17     </td>
18   </tr>
19   {{#if md-date}}
20   <tr>
21     <th>{{mkws-translate "Date"}}</th>
22     <td>{{md-date}}</td>
23   </tr>
24   {{/if}}
25   {{#if md-author}}
26   <tr>
27     <th>{{mkws-translate "Author"}}</th>
28     <td>{{md-author}}</td>
29   </tr>
30   {{/if}}
31   {{#if md-electronic-url}}
32   <tr>
33     <th>{{mkws-translate "Links"}}</th>
34     <td>
35       {{#each md-electronic-url}}
36         <a href="{{this}}">Link{{mkws-index1}}</a>
37       {{/each}}
38     </td>
39   </tr>
40   {{/if}}
41   {{#mkws-if-any location having="md-subject"}}
42   <tr>
43     <th>{{mkws-translate "Subject"}}</th>
44     <td>
45       {{#mkws-first location having="md-subject"}}
46         {{#if md-subject}}
47           {{#mkws-commaList md-subject}}
48             {{this}}{{/mkws-commaList}}
49         {{/if}}
50       {{/mkws-first}}
51     </td>
52   </tr>
53   {{/mkws-if-any}}
54   <tr>
55     <th>{{mkws-translate "Locations"}}</th>
56     <td>
57       {{#mkws-commaList location}}
58         {{mkws-attr "@name"}}{{/mkws-commaList}}
59     </td>
60   </tr>
61 </table>