PageRenderTime 59ms CodeModel.GetById 35ms RepoModel.GetById 0ms app.codeStats 0ms

/docroot/profiles/ra/modules/contrib/print/print.tpl.php

https://bitbucket.org/dgolovnyak/ra
PHP | 38 lines | 31 code | 1 blank | 6 comment | 1 complexity | 471d25d886fd5c28e5b8d51ac4b5fd85 MD5 | raw file
Possible License(s): LGPL-2.1
  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. <div class="print-content"><?php print $print['content']; ?></div>
  31. <div class="print-footer"><?php print $print['footer_message']; ?></div>
  32. <hr class="print-hr" />
  33. <div class="print-source_url"><?php print $print['source_url']; ?></div>
  34. <div class="print-links"><?php print $print['pfp_links']; ?></div>
  35. <?php print $print['footer_scripts']; ?>
  36. </body>
  37. </html>