Drupal modules for browsing and managing Fedora-based digital repositories.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Render a bunch of objects in a list or grid view.
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<div class="islandora-objects clearfix">
|
|
|
|
<span class="islandora-objects-display-switch">
|
|
|
|
<?php
|
|
|
|
print theme('links', array(
|
|
|
|
'links' => $display_links,
|
|
|
|
'attributes' => array('class' => array('links', 'inline')),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
?>
|
|
|
|
</span>
|
|
|
|
<?php print $pager; ?>
|
|
|
|
<?php print $content; ?>
|
|
|
|
<?php print $pager; ?>
|
|
|
|
</div>
|