| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file content-profile-display-view.tpl.php
|
| 6 |
*
|
| 7 |
* Theme implementation to display a content-profile.
|
| 8 |
*/
|
| 9 |
?>
|
| 10 |
<?php if (isset($title)): ?>
|
| 11 |
<h3 class="content-profile-title"><?php print $title; ?></h3>
|
| 12 |
<?php endif; ?>
|
| 13 |
<div class="content-profile-display">
|
| 14 |
<?php if (isset($tabs)) : ?>
|
| 15 |
<ul class="tabs content-profile">
|
| 16 |
<?php foreach ($tabs as $tab) : ?>
|
| 17 |
<?php if ($tab): ?>
|
| 18 |
<li><?php print $tab; ?></li>
|
| 19 |
<?php endif; ?>
|
| 20 |
<?php endforeach; ?>
|
| 21 |
</ul>
|
| 22 |
<?php endif; ?>
|
| 23 |
<?php if (isset($node->nid) && isset($content)): ?>
|
| 24 |
<?php print $content ?>
|
| 25 |
<?php endif; ?>
|
| 26 |
</div>
|