summaryrefslogtreecommitdiff
path: root/themes/garland/node.tpl.php
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-10-29 13:21:46 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-10-29 13:21:46 +0000
commitb01d96aed5004b6b07cf0e9437eb0bd95b8a70da (patch)
tree1b70f8dde859d3fe15c26f8fd0cf762ac2f84b9f /themes/garland/node.tpl.php
parente1a7144b3320dacc2b1c7065ef2c126e265967d5 (diff)
downloadbrdo-b01d96aed5004b6b07cf0e9437eb0bd95b8a70da.tar.gz
brdo-b01d96aed5004b6b07cf0e9437eb0bd95b8a70da.tar.bz2
#88202: Adding Garland theme to core.
Diffstat (limited to 'themes/garland/node.tpl.php')
-rw-r--r--themes/garland/node.tpl.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/themes/garland/node.tpl.php b/themes/garland/node.tpl.php
new file mode 100644
index 000000000..56af23654
--- /dev/null
+++ b/themes/garland/node.tpl.php
@@ -0,0 +1,31 @@
+<?php phptemplate_comment_wrapper(NULL, $node->type); ?>
+
+<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
+
+<?php print $picture ?>
+
+<?php if ($page == 0): ?>
+ <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
+<?php endif; ?>
+
+ <?php if ($submitted): ?>
+ <span class="submitted"><?php print t('!date — !username', array('!username' => theme('username', $node), '!date' => format_date($node->created))); ?></span>
+ <?php endif; ?>
+
+ <div class="content">
+ <?php print $content ?>
+ </div>
+
+ <div class="clear-block clear">
+ <div class="meta">
+ <?php if ($taxonomy): ?>
+ <div class="terms"><?php print $terms ?></div>
+ <?php endif;?>
+ </div>
+
+ <?php if ($links): ?>
+ <div class="links"><?php print $links; ?></div>
+ <?php endif; ?>
+ </div>
+
+</div> \ No newline at end of file