You are here

oa-related-ref.tpl.php in Open Atrium Related Content 7.2

Provides theming for oa_related_files widget.

$items - Array of nodes to display.

File

templates/oa-related-ref.tpl.php
View source
<?php

/**
 * @file
 * Provides theming for oa_related_files widget.
 *
 * $items - Array of nodes to display.
 */
?>

<div class="oa-related-ref">
  <?php

foreach ($items as $node) {
  ?>
    <div class="oa-related-refitem">
      <div class="oa-related-title">
        <div class="oa-related-type"><?php

  print $node['type'];
  ?></div>
        <?php

  print $node['title'];
  ?></div>
    </div>
  <?php

}
?>
</div>