/[drupal]/contributions/themes/moleskine/node-forum.tpl.php
ViewVC logotype

Contents of /contributions/themes/moleskine/node-forum.tpl.php

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


Revision 1.1 - (show annotations) (download) (as text)
Fri Jul 11 22:10:10 2008 UTC (16 months, 2 weeks ago) by couzinhub
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-5, DRUPAL-7--1, DRUPAL-6--1
File MIME type: text/x-php
Initial release of Moleskine
1 <?php
2 // $Id$
3 ?>
4
5 <div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>" id="node-<?php print $node->nid; ?>">
6 <?php if ($page == 0): ?>
7 <h2 class="title">
8 <a href="<?php print $node_url; ?>"><?php print $title; ?></a>
9 </h2>
10 <?php endif; ?>
11
12 <?php if ($picture) print $picture; ?>
13
14 <?php if ($submitted): ?>
15 <span class="submitted"><?php print t('Posted ') . date("F jS, Y", $node->created) . t(' by ') . theme('username', $node); ?></span>
16 <?php endif; ?>
17
18 <div class="content">
19 <?php print $content; ?>
20 </div>
21
22 <?php if ($links): ?>
23 <div class="links">
24 <?php print $links; ?>
25 </div>
26 <?php endif; ?>
27
28 </div>

  ViewVC Help
Powered by ViewVC 1.1.2