You are here

html--ajax.tpl.php in Ajaxify Drupal with JQuery Ajax 7

Overridden theme implementation to display the basic html structure of a single Ajax Drupal page.

You can use any variable available in html.tpl.php.

File

tpl/html--ajax.tpl.php
View source
<?php

/**
 * @file
 * Overridden theme implementation to display the basic html structure of a 
 * single Ajax Drupal page.
 *
 * You can use any variable available in html.tpl.php.
 */
?>
<!-- title is required if html5 settings enabled in module config page -->
<title><?php

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

echo $scripts;
echo $styles;
echo $page_top;
echo $page;
echo $page_bottom;