box.tpl.php in Drupal for Facebook 6.2
Same filename and directory in other branches
FBML block template.
File
themes/fb_fbml/box.tpl.phpView source
<?php
/**
* @file
* FBML block template.
*/
?>
<div class="box">
<?php
if ($title) {
?>
<h2 class="title"><?php
print $title;
?></h2>
<?php
}
?>
<div class="content"><?php
print $content;
?></div>
</div>