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.
30 lines
856 B
30 lines
856 B
12 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Render a bunch of objects in a list or grid view.
|
||
|
*/
|
||
|
?>
|
||
|
<div class="islandora-objects-list">
|
||
|
<?php $row_field = 0; ?>
|
||
|
<?php foreach($objects as $object): ?>
|
||
|
<?php $first = ($row_field == 0) ? 'first' : ''; ?>
|
||
|
<div class="islandora-objects-list-item clearfix">
|
||
|
<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['class']?> <?php print $first; ?>">
|
||
|
<strong>
|
||
|
<?php print $object['link']; ?>
|
||
|
</strong>
|
||
|
</dd>
|
||
|
<dd class="islandora-object-description">
|
||
|
<?php print $object['description']; ?>
|
||
|
</dd>
|
||
|
</dl>
|
||
|
</div>
|
||
|
<?php $row_field++; ?>
|
||
|
<?php endforeach; ?>
|
||
|
</div>
|