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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Sun Mar 27 23:51:40 2005 UTC (4 years, 8 months ago) by kbahey
Branch: MAIN
CVS Tags: DRUPAL-4-5, HEAD
Branch point for: DRUPAL-4-6
File MIME type: text/x-php
Initial commit of Lincoln's Revenge theme, by Chris Messina.
1 <div class="node<?php print ($static) ? " static" : ""; ?>">
2 <?php if ($avatar): ?>
3 <div class="avatar"><?php print $avatar ?></div>
4 <?php endif; ?>
5
6 <?php if ($page == 0): ?>
7 <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
8 <?php endif; ?>
9
10 <?php if ($nodetype != 'page'): ?>
11 <div class="info"><span class="submitted">Submitted by <?php print $name; ?> on <?php print $date; ?></span></div>
12 <?php endif; ?>
13
14 <?php if ($terms): ?>
15 <div class="taxonomy"><?php print $terms; ?></div>
16 <?php endif; ?>
17
18 <div class="content">
19 <?php print $content ?>
20 </div>
21
22 <?php if ($links): ?>
23 <div class="links">&raquo; <?php print $links ?></div>
24 <?php endif; ?>
25 </div>
26

  ViewVC Help
Powered by ViewVC 1.1.2