You are here

language_selection_page.tpl.php in Language Selection Page 6

The template file of the module

Variables used:

  • $data: array of links in each language enabled.

File

themes/language_selection_page.tpl.php
View source
<?php

/**
 * @file
 * The template file of the module
 *
 * Variables used:
 *  - $data: array of links in each language enabled.
 *
 */
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <?php

print $data['head'];
?>
    <title><?php

print $data['title'];
?></title>
    <?php

print $data['styles'];
?>
    <?php

print $data['scripts'];
?>
  </head>
  <body class='language_selection_page'>
        <?php

print $data['content'];
?>
  <?php

print $data['closure'];
?>
  </body>
</html>