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

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

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


Revision 1.2 - (show annotations) (download) (as text)
Sat Apr 26 19:31:33 2008 UTC (19 months ago) by ceejayoz
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +5 -5 lines
File MIME type: text/x-php
coder.module fixes.
1 <?php
2 // $Id: node.tpl.php,v 1.1 2008/04/26 01:55:30 ceejayoz Exp $
3 ?>
4 <div id="node-<?php print $node->nid; ?>" class="entry hentry<?php print $sticky ? ' sticky' : ''; ?><?php print !$status ? ' node-unpublished' : ''; ?>">
5 <div class="meta">
6 <?php if ($page == 0): ?>
7 <h2 class="title entry-title"><a href="<?php print $node_url; ?>" rel="bookmark" title="Permanent link to <?php print check_plain($title); ?>"><?php print $title; ?></a></h2>
8 <?php endif; ?>
9
10 <?php if ($submitted): ?>
11 <p class="metadata"><?php print $submitted; ?></p>
12 <?php endif; ?>
13 </div>
14
15 <div class="content entry-content">
16 <?php print $content; ?>
17 </div>
18
19 <?php if ($terms): ?>
20 <p class="tagdata"><strong>Tags:</strong> <?php print $terms; ?></p>
21 <?php endif; ?>
22
23 <?php if ($links): ?>
24 <p class="links"><?php print $links; ?></p>
25 <?php endif; ?>
26 </div>

  ViewVC Help
Powered by ViewVC 1.1.2