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-grid clearfix">
|
|
|
|
<?php foreach($objects as $object): ?>
|
|
|
|
<div class="islandora-objects-grid-item">
|
|
|
|
<dl class="islandora-object <?php print $object['class']; ?>">
|
|
|
|
<dt class="islandora-object-thumb"><?php print $object['thumb']; ?></dt>
|
|
|
|
<dd class="islandora-object-caption"><?php print $object['link']; ?></dd>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|