You are here

iframe.tpl.php in Drupal for Facebook 5

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

File

themes/fb_fbml/iframe.tpl.php
View source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php

print $language;
?>" xml:lang="<?php

print $language;
?>">
  <head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<title><?php

print $head_title;
?></title>
	<?php

print $head;
?>
	<?php

print $styles;
?>
	<?php

print $scripts;
?>
  </head>
  <body class="<?php

print $body_classes;
?>" >
    <div id="page">
	  <div id="header">
		        
		<?php

if ($iframe_header) {
  ?>
          <div id="header-blocks">
            <?php

  print $iframe_header;
  ?>
          </div>
        <?php

}
?>
        <!-- /header-blocks -->
        
      </div>
      <!-- /header -->
	  
      <div id="main">
        
		<div id="content">
          <?php

if (!empty($tabs)) {
  ?>
            <div class="tabs">
              <?php

  print $tabs;
  ?>
            </div>
          <?php

}
?>
          <!-- /tabs -->
          
		  <?php

if ($messages || $help) {
  ?>
            <div id="content-header">
			  <?php

  print $messages;
  ?>
              <?php

  print $help;
  ?>
            </div>
          <?php

}
?>
          <!-- /content-header -->
                    
		  <?php

if (!empty($content_top)) {
  ?>
            <div id="content-top">
              <?php

  print $content_top;
  ?>
            </div>
          <?php

}
?>
          <!-- /content-top -->
          
		  <?php

if (!empty($content)) {
  ?>
            <div id="content-area">
              <?php

  print $content;
  ?>
            </div>
          <?php

}
?>
          <!-- /content -->
          
		  <?php

if (!empty($content_bottom)) {
  ?>
            <div id="content-bottom">
              <?php

  print $content_bottom;
  ?>
            </div>
          <?php

}
?>
          <!-- /content-bottom -->
        </div>
      </div>
      <!-- /main -->
      
	  <div id="footer">
		<?php

if ($iframe_footer) {
  ?>
          <div id="footer-blocks">
            <?php

  print $iframe_footer;
  ?>
          </div>
        <?php

}
?>
      </div>
      <!-- /footer -->
      
	  <?php

if ($closure_region) {
  ?>
        <div id="closure-blocks">
          <?php

  print $closure_region;
  ?>
        </div>
        <?php

}
?>
      <?php

print $closure;
?>
    </div>
    <!-- /page -->
  </body>
</html>