<!-- The following prints a citation for this item. --> <div id="item-citation" class="element"> <h3><?php echo __('Citation'); ?> </h3> <div class="element-text"><?php echo metadata('item', 'citation', array('no_escape' => true)); ?> </div> </div> <?php fire_plugin_hook('public_items_show', array('view' => $this, 'item' => $item)); ?> <ul class="item-pagination navigation"> <li id="previous-item" class="previous"><?php echo link_to_previous_item_show(); ?> </li> <li id="next-item" class="next"><?php echo link_to_next_item_show(); ?> </li> </ul> </div> <!-- End of Primary. --> <?php echo foot();
?> </h2> <div class="element-text"><?php echo output_format_list(); ?> </div> </div> <?php fire_plugin_hook('public_items_show', array('view' => $this, 'item' => $item)); ?> <nav class="item-pagination"> <ul class="navigation"> <?php if ($previous = link_to_previous_item_show()) { ?> <li id="previous-item" class="previous"><?php echo $previous; ?> </li> <?php } ?> <?php if ($next = link_to_next_item_show()) { ?> <li id="next-item" class="next"><?php echo $next; ?> </li>
<h6>Item data</h6> <p>Metadata for this item is available in the following formats: <?php echo output_format_list(false, ' | '); ?> </p> <hr> <?php $url = current_url(); $pos = strpos($url, 'exhibits'); if (!$pos) { ?> <nav> <ul class="pager"> <li id="previous-item" class="previous"><?php echo link_to_previous_item_show('← Previous'); ?> </li> <li id="next-item" class="next"><?php echo link_to_next_item_show('Next →'); ?> </li> </ul> </nav> <?php } else { echo '<br/>'; } ?> </div>
?> <?php echo item_image_gallery(array('linkWrapper' => array('class' => 'admin-thumb panel')), 'square_thumbnail', true); ?> <?php echo all_element_texts('item'); ?> <?php fire_plugin_hook('admin_items_show', array('item' => $item, 'view' => $this)); ?> </section> <section class="three columns omega"> <ul class="pagination"> <?php if ($prevLink = link_to_previous_item_show(__('Prev Item'))) { ?> <li id="previous-item" class="previous"> <?php echo $prevLink; ?> </li> <?php } ?> <?php if ($nextLink = link_to_next_item_show(__('Next Item'))) { ?> <li id="next-item" class="next"> <?php echo $nextLink;