~sense/ubuntu-wanted/drupal6-migration

« back to all changes in this revision

Viewing changes to artwork/ubuntuwanted-theme/node.tpl.php

  • Committer: Sense Hofstede
  • Date: 2009-03-22 17:58:59 UTC
  • Revision ID: sense@qense.nl-20090322175859-mzvoupql3eyqwour
* Stole the Ubuntu Drupal theme to let the new theme be based upon in the future. This gives us a theme that is compatible with D6 and that is a lot cleaner.
* Fixed the menu
* Clean the HTML files in the module

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
// $Id: node.tpl.php,v 1.1.2.22 2008/07/27 18:05:04 andregriffin Exp $
 
3
?>
 
4
<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
 
5
 
 
6
<?php print $picture ?>
 
7
 
 
8
<?php if ($page == 0): ?>
 
9
  <div id="node-title"><div class="inner"><span class="corners-top"><span></span></span>
 
10
    <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
 
11
  <?php if ($submitted): ?>
 
12
    <span class="submitted"><?php print $submitted; ?></span>
 
13
  <?php endif; ?>
 
14
  <span class="corners-bottom"><span></span></span></div></div>
 
15
<?php endif; ?>
 
16
 
 
17
  <?php if ($page != 0 && $submitted): ?>
 
18
    <span class="submitted"><?php print $submitted; ?></span>
 
19
  <?php endif; ?>
 
20
 
 
21
  <div class="content">
 
22
    <?php print $content ?>
 
23
  </div>
 
24
 
 
25
  <div class="meta">
 
26
 
 
27
    <?php if ($links): ?>
 
28
      <div class="links">
 
29
        <?php print $links; ?>
 
30
      </div>
 
31
    <?php endif; ?>
 
32
 
 
33
    <?php if ($taxonomy): ?>
 
34
      <div class="terms">
 
35
        <?php print $terms ?>
 
36
      </div>
 
37
    <?php endif;?>
 
38
 
 
39
    <span class="clear"></span>
 
40
 
 
41
  </div>
 
42
 
 
43
</div>