? node-tpl-php.patch
Index: modules/node/node.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.tpl.php,v
retrieving revision 1.10
diff -u -p -r1.10 node.tpl.php
--- modules/node/node.tpl.php	18 Feb 2009 14:28:22 -0000	1.10
+++ modules/node/node.tpl.php	3 Mar 2009 06:54:00 -0000
@@ -51,28 +51,38 @@
 ?>
 <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clearfix">
 
-<?php print $picture ?>
+  <?php if ($picture): ?>
+    <div id="node-user-picture">
+      <?php print $picture ?>
+    </div>
+  <?php endif; ?>
 
-<?php if (!$page): ?>
-  <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
-<?php endif; ?>
-
-  <div class="meta">
-  <?php if ($submitted): ?>
-    <span class="submitted"><?php print $submitted ?></span>
+  <?php if (!$page): ?>
+    <div id="node-title">
+      <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
+    </div>
   <?php endif; ?>
 
-  <?php if ($terms): ?>
-    <div class="terms terms-inline"><?php print $terms ?></div>
-  <?php endif;?>
+  <div class="node-meta">
+    <?php if ($submitted): ?>
+      <span class="node-submitted"><?php print $submitted ?></span>
+    <?php endif; ?>
+
+    <?php if ($terms): ?>
+      <div class="node-terms terms-inline"><?php print $terms ?></div>
+    <?php endif;?>
   </div>
 
-  <div class="content">
+  <div class="node-content">
     <?php print $content ?>
   </div>
 
-  <?php print $links; ?>
+  <div class="node-links">
+    <?php print $links; ?>
+  </div>
 
-  <?php print $comments; ?>
+  <div class="comments">
+    <?php print $comments; ?>
+  </div>
 
 </div>
\ No newline at end of file
