/[drupal]/contributions/modules/nodeprofile/content_profile-display-view.tpl.php
ViewVC logotype

Contents of /contributions/modules/nodeprofile/content_profile-display-view.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Fri Jan 25 10:57:36 2008 UTC (22 months ago) by fago
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
checked in a first prototype of content profile
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>

  ViewVC Help
Powered by ViewVC 1.1.2