templates/app/print-layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale }}">
  3.     <head>
  4.         <title>{{ page.title ?? pimcore_website_config('sitename', "") }} </title>
  5.         <meta charset="UTF-8">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.         <meta name="description" content="Coolworld offers rental of temporary cold storage rooms and freezers in all imaginable formats, full service. Contact us for customized advice.">
  8.         {# css file parsing might not work like expected in PDF #}
  9.         {{ vite('print.js', true)|raw }}
  10.         {{ block('style') }}
  11.     </head>
  12.     <body>
  13.         {{ block('content') }}
  14.     </body>
  15. </html>