summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-10-19 01:30:07 +0000
committerDries Buytaert <dries@buytaert.net>2009-10-19 01:30:07 +0000
commit079dca8e17b47cfee0a80f4a683bb511c8fe5505 (patch)
tree8006b60dc5719ed42ff6be0f8645bb8da637a037 /themes
parent29a574e08252d3fe7e1e805abbb6373a2cddba54 (diff)
downloadbrdo-079dca8e17b47cfee0a80f4a683bb511c8fe5505.tar.gz
brdo-079dca8e17b47cfee0a80f4a683bb511c8fe5505.tar.bz2
- Patch #608036 by effulgentsia: add content_attributes() variable for tpl files, so RDF can be implemented better.
Diffstat (limited to 'themes')
-rw-r--r--themes/garland/block.tpl.php2
-rw-r--r--themes/garland/comment.tpl.php2
-rw-r--r--themes/garland/node.tpl.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/themes/garland/block.tpl.php b/themes/garland/block.tpl.php
index f9879ebbe..9474ba72a 100644
--- a/themes/garland/block.tpl.php
+++ b/themes/garland/block.tpl.php
@@ -11,5 +11,5 @@
<h2 class="title"<?php print $title_attributes; ?>><?php print $block->subject ?></h2>
<?php endif;?>
- <div class="content"><?php print $content ?></div>
+ <div class="content"<?php print $content_attributes; ?>><?php print $content ?></div>
</div>
diff --git a/themes/garland/comment.tpl.php b/themes/garland/comment.tpl.php
index f973e5baa..2c3e1ca28 100644
--- a/themes/garland/comment.tpl.php
+++ b/themes/garland/comment.tpl.php
@@ -19,7 +19,7 @@
<h3<?php print $title_attributes; ?>><?php print $title ?></h3>
- <div class="content">
+ <div class="content"<?php print $content_attributes; ?>>
<?php hide($content['links']); print render($content); ?>
<?php if ($signature): ?>
<div class="clearfix">
diff --git a/themes/garland/node.tpl.php b/themes/garland/node.tpl.php
index 5c02dfb9b..47f9cc974 100644
--- a/themes/garland/node.tpl.php
+++ b/themes/garland/node.tpl.php
@@ -17,7 +17,7 @@
<span class="submitted"><?php print $date; ?> — <?php print $name; ?></span>
<?php endif; ?>
- <div class="content clearfix">
+ <div class="content clearfix"<?php print $content_attributes; ?>>
<?php
// We hide the comments and links now so that we can render them later.
hide($content['comments']);