/[drupal]/contributions/themes/Aeon5/node.tpl.php
ViewVC logotype

Contents of /contributions/themes/Aeon5/node.tpl.php

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


Revision 1.4 - (show annotations) (download) (as text)
Thu May 17 11:31:25 2007 UTC (2 years, 6 months ago) by chrisherberte
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--1, DRUPAL-6--2
Changes since 1.3: +1 -1 lines
File MIME type: text/x-php
#135888 semi-colon extraneous semi-colons cause validation errors
may validate although not tested
1 <?php
2 $day = format_date($node->created, 'custom', 'd');
3 $month = format_date($node->created, 'custom', 'M');
4 ?>
5
6 <div class="node<?php print ($sticky) ? " sticky" : ""; ?>">
7 <?php if ($page == 0) { ?>
8 <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
9 <div class="date">
10 <span class="month"><?php print $month ?></span>
11 <span class="day"><?php print $day ?></span>
12 </div>
13
14 <?php } else { ?>
15 <?php print $picture ?>
16 <?php }; ?>
17
18
19 <div class="content">
20 <?php print $content ?>
21 </div>
22
23 <?php if ($submitted) { ?>
24 <span class="submitted">
25 by <?php print theme('username', $node);?>
26 </span>
27 <?php } ?>
28 <div class="clear"></div>
29
30 <?php if ($links) { ?>
31 <div class="info">
32 <?php print $links ?>
33 </div>
34 <?php }; ?>
35
36 </div>

  ViewVC Help
Powered by ViewVC 1.1.2