You are here

pdf-generator-print.html.twig in PDF Generator 8

Same filename and directory in other branches
  1. 2.0.x templates/pdf-generator-print.html.twig
<!DOCTYPE html>
<html lang="es">
<head>
  <style type="text/css">
    {{ css }}
   </style>
   <title>{{ title }}</title>
</head>
<body class="pdf">
	<div class="content">{{ content }}</div>
</body>
</html>

File

templates/pdf-generator-print.html.twig
View source
  1. <!DOCTYPE html>
  2. <html lang="es">
  3. <head>
  4. <style type="text/css">
  5. {{ css }}
  6. </style>
  7. <title>{{ title }}</title>
  8. </head>
  9. <body class="pdf">
  10. <div class="content">{{ content }}</div>
  11. </body>
  12. </html>