export-doc.tpl.php in Export document 7
Template for exporting the doc file.
Available variables:
- $content: Content array.
1 theme call to export-doc.tpl.php
- export_doc_export_action in ./
export_doc.module - Implementation of action_function().
File
templates/export-doc.tpl.phpView 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>