cvs diff: Diffing themes/garland
Index: themes/garland/node.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/garland/node.tpl.php,v
retrieving revision 1.9
diff -u -p -r1.9 node.tpl.php
--- themes/garland/node.tpl.php	18 Feb 2009 14:28:25 -0000	1.9
+++ themes/garland/node.tpl.php	5 Apr 2009 02:31:56 -0000
@@ -20,12 +20,18 @@
   <div class="clearfix">
     <div class="meta">
     <?php if ($terms): ?>
-      <div class="terms"><?php print $terms ?></div>
+      <div class="terms">
+        <?php if($related_terms)
+           echo '<h2 class="offscreen">' . $related_terms . '</h2>'; 
+      print $terms; ?></div>
     <?php endif;?>
     </div>
 
     <?php if ($links): ?>
-      <div class="links"><?php print $links; ?></div>
+      <div class="links">
+        <?php if($related_pages) 
+           echo '<h2 class="offscreen">' . $related_pages . '</h2>'; 
+        print $links; ?></div>
     <?php endif; ?>
 
     <?php print $comments; ?>
Index: themes/garland/template.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/garland/template.php,v
retrieving revision 1.20
diff -u -p -r1.20 template.php
--- themes/garland/template.php	20 Jan 2009 03:18:41 -0000	1.20
+++ themes/garland/template.php	5 Apr 2009 02:31:57 -0000
@@ -26,6 +26,11 @@ function garland_comment_wrapper($conten
   }
 }
 
+function garland_preprocess_node(&$vars) {
+  $vars['related_terms'] = t('related terms');
+  $vars['related_pages'] = t('related pages');
+}
+
 /**
  * Override or insert variables into the page template.
  */

