/[drupal]/contributions/sandbox/jjeff/zengine/node.zen.php
ViewVC logotype

Contents of /contributions/sandbox/jjeff/zengine/node.zen.php

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


Revision 1.1 - (show annotations) (download) (as text)
Sun May 6 00:06:35 2007 UTC (2 years, 6 months ago) by jjeff
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
alpha version of Zengine theme engine. Place in sites/all/themes/engines
1 <div class="<?php print $node_classes ?>" id="node-<?php print $node->nid; ?>">
2 <?php if ($page == 0): ?>
3 <h2 class="title">
4 <a href="<?php print $node_url ?>"><?php print $title; ?></a>
5 </h2>
6 <?php endif; ?>
7
8 <?php if ($picture) print $picture; ?>
9
10 <?php if ($submitted): ?>
11 <span class="submitted">
12 <?php print $submitted ?>
13 </span>
14 <?php endif; ?>
15
16 <?php if (count($taxonomy)): ?>
17 <div class="taxonomy"><?php print t(' in ') . $terms ?></div>
18 <?php endif; ?>
19
20 <div class="content">
21 <?php print $content; ?>
22 </div>
23
24 <?php if ($links): ?>
25 <div class="links">
26 <?php print $links; ?>
27 </div>
28 <?php endif; ?>
29
30 </div>

  ViewVC Help
Powered by ViewVC 1.1.2