src/templates/print_base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8"/>
  5.     <meta name="description" content="overview &amp; stats"/>
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
  7. {% block headers %}
  8. {% endblock headers %}
  9. {% block title %}
  10. {% endblock title %}
  11. {% block stylesheets %}
  12.     <link rel="stylesheet" href="{{ absolute_url(asset('ace/css/ace.css')) }}" class="ace-main-stylesheet" id="main-ace-style" />
  13.     <link rel="stylesheet" href="{{ absolute_url(asset('ace/css/bootstrap.css')) }}"/>
  14.     <link rel="stylesheet" href="{{ absolute_url(asset('css/all.css')) }}"/>
  15.     <link rel="stylesheet" href="{{ absolute_url(asset('css/aplication.css')) }}" type="text/css"/>
  16.     
  17. <style>
  18.     @page { margin: 100px 25px; }
  19.     {% block css_header %} 
  20.         header { position: fixed; top: -60px; left: 0px; right: 0px; background-color: lightblue; height: 35px; }
  21.     {% endblock css_header %} 
  22.     {% block css_footer %} 
  23.         footer { position: fixed; bottom: -60px; left: 0px; right: 0px; background-color: lightblue; height: 35px; }
  24.     {% endblock css_footer %} 
  25.   </style>    
  26. {% endblock %}
  27. </head>
  28. <body style="background-color: white">
  29.     <header>
  30.         {% block header %} 
  31.         {% endblock header %} 
  32.     </header>
  33.     <footer>
  34.         {% block footer %} 
  35.         {% endblock footer %} 
  36.     </footer>
  37.     <main>
  38.         {% block body %}
  39.         {% endblock body %}
  40.     </main>
  41. </body>
  42. </html>