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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Sat Oct 20 23:24:06 2007 UTC (2 years, 1 month ago) by calebg
Branch: MAIN
CVS Tags: DRUPAL-5--5-0, DRUPAL-5--6-0, DRUPAL-5--3-0, DRUPAL-5--4-0, DRUPAL-5--1-0, DRUPAL-6--2-2, DRUPAL-6--2-1, DRUPAL-6--2-0, DRUPAL-6--3-0, DRUPAL-6--1-0, DRUPAL-6--4-0, HEAD
Branch point for: DRUPAL-5--3, DRUPAL-6--1, DRUPAL-6--2, DRUPAL-6--3, DRUPAL-6--4, DRUPAL-5--5, DRUPAL-5--4, DRUPAL-5--6
File MIME type: text/x-php
Initial commit of atck. Advanced Theme Construction Kit
1 <div id="node-<?php print $node->nid; ?>" class="<?php print $node_classes ?>">
2 <?php if ($page == 0): ?>
3 <h2 class="title"><a href="<?php print $node_url ?>"><?php print $title; ?></a></h2>
4 <?php endif; ?>
5 <?php if ($picture) print $picture; ?>
6 <?php if ($submitted): ?>
7 <span class="submitted"><?php print t('Posted ') . format_date($node->created, 'custom', "F jS, Y") . t(' by ') . theme('username', $node); ?></span>
8 <?php endif; ?>
9 <?php if (count($taxonomy)): ?>
10 <div class="taxonomy">
11 <?php print t(' in ') . $terms ?>
12 </div>
13 <?php endif; ?>
14 <div class="content">
15 <?php print $content; ?>
16 </div>
17 <?php if ($links): ?>
18 <div class="links">
19 <?php print $links; ?>
20
21 </div>
22 <?php endif; ?>
23 </div> <!-- /#node-<?php print $node->nid; ?> -->
24

  ViewVC Help
Powered by ViewVC 1.1.2