templates/role/user/print/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta contentType="text/html" />
  5.         <meta charset="UTF-8" />
  6.         <meta class="viewport" name="viewport" content="width=device-width, initial-scale=1.0">        
  7.         
  8.         {% block stylesheets %}
  9.             <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800%7CShadows+Into+Light">
  10.             <link rel="stylesheet" type="text/css" href="{{ asset ('css/bootstrap.css') }}" />
  11.             <link rel="stylesheet" type="text/css" href="{{ asset ('css/style.css') }}" />
  12.             <link rel="stylesheet" type="text/css" href="{{ asset ('css/dark.css') }}" />
  13.             <link rel="stylesheet" type="text/css" href="{{ asset ('css/font-icons.css') }}" />
  14.             <link rel="stylesheet" type="text/css" href="{{ asset ('css/animate.css') }}" />
  15.             <link rel="stylesheet" type="text/css" href="{{ asset ('css/magnific-popup.css') }}" />
  16.             <link rel="stylesheet" type="text/css" href="{{ asset ('css/personal_2025_02_21/print.css') }}" />
  17.             <link rel="stylesheet" type="text/css" href="{{ asset ('css/personal_2025_02_21/classes.css') }}" />
  18.             <link rel="stylesheet" type="text/css" href="{{ asset ('css/personal_2025_02_21/custom.css') }}" />
  19.             <link rel="stylesheet" type="text/css" href="{{ asset ('css/personal_2025_02_21/themeOverride.css') }}" />
  20.             {% block page_stylesheet %}{% endblock %}
  21.         {% endblock %}
  22.         
  23.         {% block meta %}{% endblock %}
  24.         <title>{% block title %}{% endblock %}</title>
  25.         
  26.         <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
  27.     </head>
  28.     <body>
  29.         {% block buttons %}{% endblock %}
  30.         {% block content %}{% endblock %}
  31.         
  32.         {% block javascripts %}
  33.             <script type="text/javascript" src="{{ asset ('js/jquery.js') }}"></script>
  34.             <script type="text/javascript" src="{{ asset ('js/plugins.js') }}"></script>
  35.             <script type="text/javascript" src="{{ asset ('js/functions.js') }}"></script>
  36.             <script type="text/javascript" src="{{ asset ('js/personal/utilities.js') }}"></script>
  37.             <script>$(function () {$('[data-toggle="tooltip"]').tooltip()});</script>
  38.         {% endblock %}
  39.         {% block modals %}{% endblock %}
  40.     </body>
  41. </html>