templates/Telemedicine/telemedicine.html.twig line 1

Open in your IDE?
  1. {% extends '@templates/Front/Shop/layout.html.twig' %}
  2. {% block head %}
  3.     <head>
  4.         {% block title %} <title>{{'app.ui.homepage_meta_title'|trans}} </title> {% endblock %}
  5.         {% block metatags %}
  6.             <meta name="description" content="Site autorizat de ofertare asigurare auto RCA. Reînnoire asigurare auto RCA printr-un singur click! Afișăm toate mașinile într-un singur panou de control, și îl Alertăm Gratuit când expiră asigurarea auto RCA."/>
  7.         {% endblock %}
  8.         <meta charset="utf-8">
  9.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  10.         <meta http-equiv="Content-Language" content="ro">
  11.         <meta name="google-site-verification" content="BEtIqk-choaMawpOxG98NtbWKAZK5MuTxV_2-pSHGFQ">
  12.         <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  13.         {% block stylesheets %}
  14.             {{ parent() }}
  15.             <link rel="stylesheet" href="{{ asset('/assets/shop/css/toast.min.css') }}">
  16.             <link rel="stylesheet" href="{{ asset('/assets/shop/css/vue-select.min.css') }}">
  17.             <link rel="stylesheet" href="{{ asset('/assets/shop/css/bootstrap.min.css') }}">
  18.             <link rel="stylesheet" href="/assets/shop/css/vignette_shop.v1.css">
  19.             <link rel="stylesheet" href="{{ asset('/assets/shop/css/toast.min.css') }}">
  20.             {{ encore_entry_link_tags('extra-options') }}
  21.         {% endblock %}
  22.         {{ sonata_block_render_event('sylius.shop.layout.head') }}
  23.         {% block javascripts %}
  24.             {{ parent() }}
  25.             <script src="{{ asset('/assets/shop/js/babel.min.js') }}"></script>
  26.             <script src="{{ asset('/assets/shop/js/float_label.js') }}" type="text/babel"></script>
  27.             {{ encore_entry_script_tags('hu-vignette') }}
  28.         {% endblock %}
  29.     </head>
  30. {% endblock %}
  31. {% block content %}
  32.     <div id="loadingScreen" class="loading-screen d-none">
  33.         <div class="card">
  34.             <div class="card-body">
  35.                 <img src="{{ asset('assets/shop/images/spinner.gif') }}" alt="loading" style="width: 75px"/>
  36.                 <h5>Vă rugăm așteptați</h5>
  37.             </div>
  38.         </div>
  39.     </div>
  40.     <div id="app" style="font-family: Open Sans;">
  41.         <div class="w-100 mt-2">
  42.             <div class="death-insurance-title w-100 font-weight-bolder">{{ 'app.ui.telemedicine.page_title'|trans }}</div>
  43.         </div>
  44.         <telemedicine-page ref="telemedicinePage" :product-price="{{ productPrice }}"></telemedicine-page>
  45.     </div>
  46.     {{ encore_entry_script_tags('vue') }}
  47. {% endblock %}