templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta http-equiv="X-UA-Compatible" content="IE-edge">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
  7.         <title>{% block title %}SBPay.me - Single place for all payment processors{% endblock %}</title>
  8.         <link rel="shortcut icon" href="{{ asset('build/images/favicon.ico') }}" type="image/x-icon">
  9.         <link rel="apple-touch-icon" href="{{ asset('build/images/favicon.ico') }}">
  10.         <meta name="apple-mobile-web-app-capable" content="yes">
  11.         <meta name="theme-color" content="#0B3052">
  12.         <meta name="msapplication-navbutton-color" content="#0B3052">
  13.         <meta name="apple-mobile-web-app-status-bar-style" content="#0B3052">
  14.         {% block translations %}
  15.         <script type="text/javascript" src="{{ path('translations.js', {v: resource_version()}) }}"></script>
  16.         {% endblock %}
  17.         {% block stylesheets %}{% endblock %}
  18.         <style>
  19.             body.v3 #payment_form{
  20.                 width: 100%;
  21.                 max-width: 700px;
  22.                 margin-left: auto;
  23.                 margin-right: auto;
  24.             }
  25.             body.v3.checkoutHtmlStyleFromiFrame .payment-form-info__item.payment-form-info__item-next{
  26.                 z-index: 4;
  27.             }
  28.         </style>
  29.     </head>
  30.     <body class="v3 {% if darkMode is defined and darkMode %}dark-mode{% endif %}"> <!--for dark mode need to add class dark-mode-->
  31.         {% block body %}{% endblock %}
  32.         {% block javascripts_custom %}{% endblock %}
  33.         {% block javascripts %}{% endblock %}
  34.         <div id="modal_root" class="app-modal-content"></div>
  35.     </body>
  36. </html>