blob: d85eeee48b4b60234912afa11223e687b3da49a7 [file] [log] [blame]
Nils Diewald4af3f0b2014-06-25 01:43:17 +00001%# ID, title, corpusID, author, pubDate, textClass
2<li data-corpus-id="<%= $match->{corpusID} %>"
3 data-doc-id="<%= $match->{docID} %>"
4 data-match-id="<%= $match->{ID} %>"
Nils Diewald7cad8402014-07-08 17:06:56 +00005 id="<%= $match->{ID} %>"
Nils Diewald4af3f0b2014-06-25 01:43:17 +00006<% if (current_route eq 'match') { %>class="active"<% } %>
7 >
8 <div>
9 <div class="snippet"><%== $match->{snippet} %></div>
10 <div class="tokenInfo"></div>
11 </div>
12 <p>
13 <strong><%= $match->{title} %></strong>
14 <%= $match->{author} ? ' by ' . $match->{author} : '' %>;
15 published on <%= date_format $match->{pubDate} %>
16 as <%= $match->{docID} %> (<%= $match->{corpusID} %>)
17 </p>
18 <ul class="action right">
19% if (current_route ne 'match') {
Nils Diewald7cad8402014-07-08 17:06:56 +000020 <li class="close" title="Close"><a href="#"><i class="fa fa-toggle-up"></a></i></li>
Nils Diewald4af3f0b2014-06-25 01:43:17 +000021%# <li class="open" title="Open in new tab"><%= link_to 'match', { corpus_id => $match->{corpusID}, doc_id => $match->{docID}, match_id => $match->{ID} }, target => '_blank', begin %><i class="fa fa-external-link-square"></i><% end %></li>
Nils Diewald7cad8402014-07-08 17:06:56 +000022 <li class="open" title="Open in new tab"><a href="#<%= $match->{ID} %>" target="_blank"><i class="fa fa-external-link-square"></i></a></li>
23
Nils Diewald4af3f0b2014-06-25 01:43:17 +000024% }
25 <li onclick="showTable(this)" title="Annotations"><i class="fa fa-info-circle"></i></li>
26%# <li title="Tree Visualizations"><i class="fa fa-sitemap"></i></li>
27%# <li title="Remember"><i class="fa fa-star-o"></i></li>
28 </ul>
29</li>