book-export-html.tpl.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. /**
  3. * @file
  4. * Default theme implementation for printed version of book outline.
  5. *
  6. * Available variables:
  7. * - $title: Top level node title.
  8. * - $head: Header tags.
  9. * - $language: Language code. e.g. "en" for english.
  10. * - $language_rtl: TRUE or FALSE depending on right to left language scripts.
  11. * - $base_url: URL to home page.
  12. * - $contents: Nodes within the current outline rendered through
  13. * book-node-export-html.tpl.php.
  14. *
  15. * @see template_preprocess_book_export_html()
  16. *
  17. * @ingroup themeable
  18. */
  19. ?>
  20. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  21. <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language; ?>" xml:lang="<?php print $language->language; ?>" dir="<?php print $dir; ?>">
  22. <head>
  23. <title><?php print $title; ?></title>
  24. <?php print $head; ?>
  25. <base href="<?php print $base_url; ?>" />
  26. <link type="text/css" rel="stylesheet" href="misc/print.css" />
  27. <?php if ($language_rtl): ?>
  28. <link type="text/css" rel="stylesheet" href="misc/print-rtl.css" />
  29. <?php endif; ?>
  30. </head>
  31. <body>
  32. <?php
  33. /**
  34. * The given node is /embedded to its absolute depth in a top level
  35. * section/. For example, a child node with depth 2 in the hierarchy is
  36. * contained in (otherwise empty) &lt;div&gt; elements corresponding to
  37. * depth 0 and depth 1. This is intended to support WYSIWYG output - e.g.,
  38. * level 3 sections always look like level 3 sections, no matter their
  39. * depth relative to the node selected to be exported as printer-friendly
  40. * HTML.
  41. */
  42. $div_close = '';
  43. ?>
  44. <?php for ($i = 1; $i < $depth; $i++): ?>
  45. <div class="section-<?php print $i; ?>">
  46. <?php $div_close .= '</div>'; ?>
  47. <?php endfor; ?>
  48. <?php print $contents; ?>
  49. <?php print $div_close; ?>
  50. </body>
  51. </html>