You are here

entity-print-views.tpl.php in Entity Print 7

PDF template for printing.

Available variables are:

  • $view - The view itself.
  • $view_html - The rendered $view html.

File

modules/entity_print_views/templates/entity-print-views.tpl.php
View source
<?php

/**
 * @file
 * PDF template for printing.
 *
 * Available variables are:
 *  - $view - The view itself.
 *  - $view_html - The rendered $view html.
 */
?>

<html>
<head>
  <meta charset="utf-8">
  <title>PDF</title>
  <?php

print drupal_get_css($entity_print_css);
?>
</head>
<body>
<div class="page">
  <?php

print $view_html;
?>
</div>
</body>
</html>