Sha256: 3de1a2a5aca61bac6a3d3baa659f8a34c70da7020caf84af785ee82fc39ea173
Contents?: true
Size: 1.01 KB
Versions: 19
Compression:
Stored size: 1.01 KB
Contents
<div class="modal-header"> <h1><%= t('blacklight.tools.citation') %></h1> <button type="button" class="blacklight-modal-close close" data-dismiss="modal" aria-label="<%= t('blacklight.modal.close') %>"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <% @documents.each do |document| %> <h1 class="modal-title"><%= document_heading(document) %></h1> <% if document.respond_to?(:export_as_mla_citation_txt) %> <h2><%= t('blacklight.citation.mla') %></h2> <%= document.send(:export_as_mla_citation_txt).html_safe %><br/><br/> <% end %> <% if document.respond_to?(:export_as_apa_citation_txt) %> <h2><%= t('blacklight.citation.apa') %></h2> <%= document.send(:export_as_apa_citation_txt).html_safe %><br/><br/> <% end %> <% if document.respond_to?(:export_as_chicago_citation_txt) %> <h2><%= t('blacklight.citation.chicago') %></h2> <%= document.send(:export_as_chicago_citation_txt).html_safe %> <% end %> <% end %> </div>
Version data entries
19 entries across 19 versions & 1 rubygems