block.tpl.php

  1. drupal
    1. 4.7 themes/bluemarine/block.tpl.php
    2. 4.7 themes/pushbutton/block.tpl.php
    3. 4.7 themes/engines/phptemplate/block.tpl.php
    4. 5 themes/bluemarine/block.tpl.php
    5. 5 themes/engines/phptemplate/block.tpl.php
    6. 5 themes/garland/block.tpl.php
    7. 5 themes/pushbutton/block.tpl.php
    8. 6 themes/bluemarine/block.tpl.php
    9. 6 modules/system/block.tpl.php
    10. 6 themes/pushbutton/block.tpl.php
    11. 6 themes/garland/block.tpl.php
    12. 7 modules/block/block.tpl.php
    13. 8 core/modules/block/block.tpl.php

1 theme call to block.tpl.php

File

themes/garland/block.tpl.php
View source
  1. <?php
  2. ?>
  3. <div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="clear-block block block-<?php print $block->module ?>">
  4. <?php if (!empty($block->subject)): ?>
  5. <h2><?php print $block->subject ?></h2>
  6. <?php endif;?>
  7. <div class="content"><?php print $block->content ?></div>
  8. </div>
Login or register to post comments