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

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

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


Revision 1.2 - (show annotations) (download) (as text)
Thu Apr 10 19:27:07 2008 UTC (19 months, 2 weeks ago) by paddy
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-5--1-0, HEAD
Changes since 1.1: +38 -23 lines
File MIME type: text/x-php
Various updates to make theme compatible across most browsers
1 <div id="node-<?php print $node->nid; ?>" class="post<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> <?php print $zebra ?>">
2 <div class="post_left">
3 <div class="date">
4 <span class="post-month">
5 <?php print date('M', $node->created); ?>
6 </span>
7 <span class="post-day">
8 <?php print date('d', $node->created); ?>
9 </span>
10 </div>
11 <?php foreach (taxonomy_node_get_terms($node->nid) as $term) { ?>
12 <div class="bookmark">
13 <?php if ($image = taxonomy_image_display($term->tid)) { print '<div class="book_item">'.$image.'</div>'; } ?>
14 </div>
15 <?php } ?>
16 </div>
17 <div class="post_right">
18 <div class="post_header">
19 <?php if ($taxonomy) { print '<div class="categories">' . $terms . '</div>'; } ?>
20 <h2 class="titleh2"><a href="<?php print $node_url; ?>" rel="bookmark" title="Permanent Link to <?php print $title; ?>">
21 <?php print $title; ?>
22 </a></h2>
23 </div>
24 <div class="post_content">
25 <div class="post_entry">
26 <?php print $picture ?>
27 <?php print $content; ?>
28 <div class="post_bottom">
29 <strong>
30 <?php print t('Author'); ?>
31 :</strong>
32 <?php print $name; ?>
33 <?php if ($links) { print '<div class="comments">' . $links . '</div>'; } ?>
34 </div>
35 <div class="clear-block clear">
36 </div>
37 </div>
38 </div>
39 </div>
40 </div>

  ViewVC Help
Powered by ViewVC 1.1.2