/[drupal]/contributions/themes/yui-framework/node.tpl.php
ViewVC logotype

Contents of /contributions/themes/yui-framework/node.tpl.php

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


Revision 1.1 - (show annotations) (download) (as text)
Fri Apr 11 09:03:30 2008 UTC (19 months, 2 weeks ago) by xavierbriand
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
création
1 <?php
2 // $Id$
3 ?>
4 <?php phptemplate_comment_wrapper(NULL, $node->type); ?>
5
6 <div id="node-<?php echo $node->nid; ?>" class="node<?php if ($sticky) { echo ' sticky'; } ?><?php if (!$status) { echo ' node-unpublished'; } ?>">
7
8 <?php echo $picture ?>
9
10 <?php if ($page == 0): ?>
11 <h2><a href="<?php echo $node_url ?>" title="<?php echo $title ?>"><?php echo $title ?></a></h2>
12 <?php endif; ?>
13
14 <?php if ($submitted): ?>
15 <span class="submitted"><?php echo t('!date — !username', array('!username' => theme('username', $node), '!date' => format_date($node->created))); ?></span>
16 <?php endif; ?>
17
18 <div class="content">
19 <?php echo $content ?>
20 </div>
21
22 <div class="meta">
23 <?php if ($taxonomy): ?>
24 <div class="terms"><?php echo $terms ?></div>
25 <?php endif;?>
26
27 <?php if ($links): ?>
28 <div class="links"><?php echo $links; ?></div>
29 <?php endif; ?>
30 </div>
31
32 </div>

  ViewVC Help
Powered by ViewVC 1.1.2