You are here

export-doc.tpl.php in Export document 7

Template for exporting the doc file.

Available variables:

  • $content: Content array.

File

templates/export-doc.tpl.php
View source
<?php

/**
 * @file
 * Template for exporting the doc file.
 *
 * Available variables:
 * - $content: Content array.
 */
?>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
  h1 {font-size: 1.5em;}
  h2 {font-size: 1.1em;}
  label {font-weight: bold;}
  .field-label { font-weight: bold; }
  .field-label-inline { display: none;}
  .field-label-inline-first { font-weight: bold;}
  .field-type-datestamp div { display: inline;}
  .field-type-number-float div { display: inline;}
  .field-type-content-taxonomy div { display: inline;}
  .field-type-text div { display: inline;}
</style>
<body>
<?php

print $content;
?>
</body>
</html>