Projet

Général

Profil

Paste
Télécharger (1,49 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / advanced_help / advanced-help-popup.tpl.php @ 6e9292aa

1
<?php
2
/**
3
 * @file
4
 * Default theme implementation to display a help popup.
5
 */
6
?>
7
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
8
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
9
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
10

    
11
<head>
12
  <title><?php print $head_title; ?></title>
13
  <?php print $head; ?>
14
  <?php print $styles; ?>
15
  <?php print $scripts; ?>
16
  <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyled Content in IE */ ?> </script>
17
</head>
18
<body class="advanced-help-popup-body">
19
  <div id="page">
20
    <div id="header">
21
      <?php if (!empty($search_box)): ?>
22
        <div id="search-box"><?php print $search_box; ?></div>
23
      <?php endif; ?>
24
    </div> <!-- /header -->
25
    <div id="breadcrumb"><?php print $breadcrumb; ?></div>
26

    
27
    <div id="content">
28
      <?php if (!empty($title)): ?><h1 class="title" id="page-title"><?php print $title; ?></h1><?php endif; ?>
29
      <?php if (!empty($tabs)): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
30
      <?php if (!empty($messages)): print $messages; endif; ?>
31
      <?php if (!empty($help)): print $help; endif; ?>
32
      <div id="content-content" class="clear-block">
33
        <?php print $content; ?>
34
      </div> <!-- /content-content -->
35
    </div> <!-- /content -->
36

    
37
    <!--
38
    See comment about $closure in main module.
39
    print $closure;
40
    -->
41

    
42
  </div> <!-- /page -->
43
</body>
44
</html>