/[drupal]/contributions/themes/glossyblue/node-forum.tpl.php
ViewVC logotype

Contents of /contributions/themes/glossyblue/node-forum.tpl.php

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


Revision 1.1 - (show annotations) (download) (as text)
Fri Feb 22 05:51:09 2008 UTC (21 months ago) by chrisada
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, HEAD
Branch point for: DRUPAL-6--1
File MIME type: text/x-php
Fixed http://drupal.org/node/154558 user name does not show in forum node type
1 <?php phptemplate_comment_wrapper(NULL, $node->type); ?>
2
3 <?php if ($page == 0): ?>
4 <div id="node-<?php print $node->nid; ?>" class="post node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
5 <div class="post-date"><span class="post-month"><?php print (format_date($node->created, 'custom', 'M')) ?></span> <span class="post-day"><?php print (format_date($node->created, 'custom', 'd')) ?></span></div>
6 <div class="entry">
7 <h2><a href="<?php print $node_url ?>" rel="bookmark" title="Permanent Link to <?php print $title ?>"><?php print $title ?></a></h2>
8 <?php if ($links): ?><span class="post-comments"><?php print $links; ?></span><?php endif; ?>
9 <div class="post-content">
10 <?php print $content ?>
11 </div>
12 </div>
13 <?php endif; ?>
14
15 <?php if ($page == 1): ?>
16 <div style="margin-top: -10px" id="node-<?php print $node->nid; ?>" class="post node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
17 <?php if ($submitted): ?>
18 <div class="submitted post-calendar">
19 <small><?php print $submitted ?></small>
20 </div>
21 <?php endif; ?>
22 <div class="post-content">
23 <?php print $content ?>
24 <?php print $links; ?>
25 </div>
26 <?php endif; ?>
27 </div>
28 <div class="clear"></div>

  ViewVC Help
Powered by ViewVC 1.1.2