Projet

Général

Profil

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

root / drupal7 / sites / all / modules / print / print.tpl.php @ 87dbc3bf

1
<?php
2

    
3
/**
4
 * @file
5
 * Default print module template
6
 *
7
 * @ingroup print
8
 */
9
?>
10
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
11
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $print['language']; ?>" xml:lang="<?php print $print['language']; ?>">
12
  <head>
13
    <?php print $print['head']; ?>
14
    <?php print $print['base_href']; ?>
15
    <title><?php print $print['title']; ?></title>
16
    <?php print $print['scripts']; ?>
17
    <?php print $print['sendtoprinter']; ?>
18
    <?php print $print['robots_meta']; ?>
19
    <?php print $print['favicon']; ?>
20
    <?php print $print['css']; ?>
21
  </head>
22
  <body>
23
    <?php if (!empty($print['message'])) {
24
      print '<div class="print-message">'. $print['message'] .'</div><p />';
25
    } ?>
26
    <div class="print-logo"><?php print $print['logo']; ?></div>
27
    <div class="print-site_name"><?php print $print['site_name']; ?></div>
28
    <p />
29
    <div class="print-breadcrumb"><?php print $print['breadcrumb']; ?></div>
30
    <hr class="print-hr" />
31
    <div class="print-content"><?php print $print['content']; ?></div>
32
    <div class="print-footer"><?php print $print['footer_message']; ?></div>
33
    <hr class="print-hr" />
34
    <div class="print-source_url"><?php print $print['source_url']; ?></div>
35
    <div class="print-links"><?php print $print['pfp_links']; ?></div>
36
    <?php print $print['footer_scripts']; ?>
37
  </body>
38
</html>