blob: 2ec5a446ae6e00bd3a90251f54ee901e13f4fdb3 [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} %>"
5<% if (current_route eq 'match') { %>class="active"<% } %>
6 >
7 <div>
8 <div class="snippet"><%== $match->{snippet} %></div>
9 <div class="tokenInfo"></div>
10 </div>
11 <p>
12 <strong><%= $match->{title} %></strong>
13 <%= $match->{author} ? ' by ' . $match->{author} : '' %>;
14 published on <%= date_format $match->{pubDate} %>
15 as <%= $match->{docID} %> (<%= $match->{corpusID} %>)
16 </p>
17 <ul class="action right">
18% if (current_route ne 'match') {
19 <li class="close" title="Close"><i class="fa fa-toggle-up"></i></li>
20%# <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>
21% }
22 <li onclick="showTable(this)" title="Annotations"><i class="fa fa-info-circle"></i></li>
23%# <li title="Tree Visualizations"><i class="fa fa-sitemap"></i></li>
24%# <li title="Remember"><i class="fa fa-star-o"></i></li>
25 </ul>
26</li>