box.tpl.php in Drupal 4
Same filename in this branch
Same filename and directory in other branches
5 theme calls to box.tpl.php
- archive_page in modules/
archive.module - Menu callback; lists all nodes posted on a given date.
- comment_form in modules/
comment.module - menu_overview_tree in modules/
menu.module - Present the menu tree, rendered along with links to edit menu items.
- search_view in modules/
search.module - Menu callback; presents the search form and/or search results.
- theme_comment_controls in modules/
comment.module
File
themes/pushbutton/box.tpl.phpView source
<div class="box">
<?php
if ($title) {
?>
<h2 class="title"><?php
print $title;
?></h2>
<?php
}
?>
<div class="content"><?php
print $content;
?></div>
</div>