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

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

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


Revision 1.2 - (show annotations) (download) (as text)
Tue Dec 11 06:51:59 2007 UTC (23 months, 2 weeks ago) by themester
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +29 -20 lines
File MIME type: text/x-php
w3c validation
1 <?php phptemplate_comment_wrapper(NULL, $node->type); ?>
2
3
4 <div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>" id="node-<?php print $node->nid; ?>">
5 <?php if ($page == 0): ?> <h2 class="title"> <a href="<?php print $node_url ?>"><?php print $title ?></a> </h2> <?php endif; ?>
6
7 <?php if ($picture) print $picture ?>
8
9 <?php if ($submitted or $has_terms): ?> <div class="meta<?php if ($has_terms) : ?> with-taxonomy<?php endif; ?>">
10
11 <?php if ($submitted): ?>
12 <div class="post-date">
13 <span class="post-year"><?php print (format_date($node->created, 'custom', 'Y')) ?></span>
14 <span class="post-month"><?php print (format_date($node->created, 'custom', 'M')) ?></span>
15 <span class="post-day"><?php print (format_date($node->created, 'custom', 'd')) ?></span>
16 </div>
17
18 <span class="author"><?php print theme('username', $node); ?></span>
19 <?php endif; ?>
20
21 <?php if ($taxonomy) : ?><?php print $terms; ?><?php endif; ?>
22
23 </div>
24
25 <?php endif; ?>
26
27 <div class="content">
28 <?php print $content?>
29 </div>
30
31 <?php if ($links): ?> <div class="links"> <?php print $links ?> </div> <?php endif; ?>
32
33 </div>
34

  ViewVC Help
Powered by ViewVC 1.1.2