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

Contents of /contributions/sandbox/jjeff/zengine/node-forum.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="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>" 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 t('Posted !date by !name', array('!date' => format_date($node->created, 'custom', "F jS, Y"), '!name' => theme('username', $node))); ?>
13 </span>
14 <?php endif; ?>
15
16 <div class="content">
17 <?php print $content; ?>
18 </div>
19
20 <?php if ($links): ?>
21 <div class="links">
22 <?php print $links; ?>
23 </div>
24 <?php endif; ?>
25
26 </div>

  ViewVC Help
Powered by ViewVC 1.1.2