You are here

box.tpl.php in Drupal for Facebook 6.2

Same filename and directory in other branches
  1. 5.2 themes/fb_fbml/box.tpl.php
  2. 5 themes/fb_fbml/box.tpl.php

FBML block template.

File

themes/fb_fbml/box.tpl.php
View 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>