templates/pom.base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8" />
  5.     {% block meta %}
  6.         <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7.         <meta name="description" content="{% block description %}{% endblock %}">
  8.         <meta name="robots" content="noindex,nofollow">
  9.     {% endblock %}
  10.     <title>{% block title %}OP-BUCE{% endblock %}</title>
  11.     {% block stylesheets %}
  12.         <link rel="stylesheet" href="{{ asset('build/app.css') }}">
  13.     {% endblock %}
  14.     {% set iconsDir = 'build/images/icons-fced550635eb06e258e264fc523dac08/' %}
  15.     <link rel="icon" type="image/x-icon" href="{{ asset(iconsDir ~ 'favicon.ico') }}" />
  16.     <link rel="icon" type="image/png" href="{{ asset(iconsDir ~ 'favicon-16x16.png') }}" sizes="16x16">
  17.     <link rel="icon" type="image/png" href="{{ asset(iconsDir ~ 'favicon-32x32.png') }}" sizes="32x32">
  18.     <link rel="apple-touch-icon" href="{{ asset(iconsDir ~ 'touch-icon-iphone.png') }}">
  19.     <link rel="apple-touch-icon" sizes="152x152" href="{{ asset(iconsDir ~ 'apple-touch-icon-152x152.png') }}">
  20.     <link rel="apple-touch-icon" sizes="167x167" href="{{ asset(iconsDir ~ 'apple-touch-icon-167x167.png') }}">
  21.     <link rel="apple-touch-icon" sizes="180x180" href="{{ asset(iconsDir ~ 'apple-touch-icon-180x180.png') }}">
  22.     <link rel="manifest" href="{{ asset(iconsDir ~ 'manifest.json') }}">
  23. </head>
  24. <body{% block bodyoptions %}{% endblock %}>
  25. {% block body %}{% endblock %}
  26. {% block footer %}
  27.     <footer class="container-fluid">
  28.         <div class="row mt-5 pt-2 border-top">
  29.             {% block footermenu %}{% endblock %}
  30.             {% block version %}<div class="col text-right"><small class="text-muted text-uppercase">V {{ shivas_app_version }}</small></div>{% endblock %}
  31.         </div>
  32.     </footer>
  33. {% endblock %}
  34. {% block modal %}{% endblock %}
  35. {% block javascripts %}
  36.     <script src="{{ asset('build/runtime.js') }}"></script>
  37.     <script src="{{ asset('public/js/underscore-min.js') }}"></script>
  38.     <script src="{{ asset('build/app.js') }}"></script>
  39. {% endblock %}
  40. </body>
  41. </html>