PageRenderTime 47ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/sites/all/modules/contrib/print/print.tpl.php

https://bitbucket.org/luckyape/bcta
PHP | 39 lines | 32 code | 1 blank | 6 comment | 1 complexity | 7889a76fcddf890117ad283367e9e843 MD5 | raw file
Possible License(s): LGPL-2.1, GPL-2.0, AGPL-1.0, AGPL-3.0, MIT
  1. <?php
  2. /**
  3. * @file
  4. * Default print module template
  5. *
  6. * @ingroup print
  7. */
  8. ?>
  9. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  10. <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $print['language']; ?>" xml:lang="<?php print $print['language']; ?>">
  11. <head>
  12. <?php print $print['head']; ?>
  13. <?php print $print['base_href']; ?>
  14. <title><?php print $print['title']; ?></title>
  15. <?php print $print['scripts']; ?>
  16. <?php print $print['sendtoprinter']; ?>
  17. <?php print $print['robots_meta']; ?>
  18. <?php print $print['favicon']; ?>
  19. <?php print $print['css']; ?>
  20. </head>
  21. <body>
  22. <?php if (!empty($print['message'])) {
  23. print '<div class="print-message">'. $print['message'] .'</div><p />';
  24. } ?>
  25. <div class="print-logo"><?php print $print['logo']; ?></div>
  26. <div class="print-site_name"><?php print $print['site_name']; ?></div>
  27. <p />
  28. <div class="print-breadcrumb"><?php print $print['breadcrumb']; ?></div>
  29. <hr class="print-hr" />
  30. <h1 class="print-title"><?php print $print['title']; ?></h1>
  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>