diff options
Diffstat (limited to 'themes/garland')
-rw-r--r-- | themes/garland/block.tpl.php | 3 | ||||
-rw-r--r-- | themes/garland/comment.tpl.php | 3 | ||||
-rw-r--r-- | themes/garland/node.tpl.php | 3 | ||||
-rw-r--r-- | themes/garland/page.tpl.php | 4 |
4 files changed, 12 insertions, 1 deletions
diff --git a/themes/garland/block.tpl.php b/themes/garland/block.tpl.php index 89a9ab1d9..1b7ae308e 100644 --- a/themes/garland/block.tpl.php +++ b/themes/garland/block.tpl.php @@ -1,3 +1,6 @@ +<?php +// $Id$ +?> <div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="clear-block block block-<?php print $block->module ?>"> <?php if (!empty($block->subject)): ?> diff --git a/themes/garland/comment.tpl.php b/themes/garland/comment.tpl.php index 6364021a8..07ea0bca6 100644 --- a/themes/garland/comment.tpl.php +++ b/themes/garland/comment.tpl.php @@ -1,3 +1,6 @@ +<?php +// $Id$ +?> <div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print (isset($comment->status) && $comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>"> <div class="clear-block"> diff --git a/themes/garland/node.tpl.php b/themes/garland/node.tpl.php index 8c267d671..5dbdd1463 100644 --- a/themes/garland/node.tpl.php +++ b/themes/garland/node.tpl.php @@ -1,3 +1,6 @@ +<?php +// $Id$ +?> <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>"> <?php print $picture ?> diff --git a/themes/garland/page.tpl.php b/themes/garland/page.tpl.php index bba6c898c..9e4c27d71 100644 --- a/themes/garland/page.tpl.php +++ b/themes/garland/page.tpl.php @@ -1,4 +1,6 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" +<?php +// $Id$ +?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>"> <head> |