templates/Front/Institution/list.html.twig line 25

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.             {{ encore_entry_link_tags('institution') }}
  22.         {% endblock %}
  23.         {{ sonata_block_render_event('sylius.shop.layout.head') }}
  24.         {% block javascripts %}
  25.             {{ parent() }}
  26.             <script src="{{ asset('/assets/shop/js/babel.min.js') }}"></script>
  27.             <script src="{{ asset('/assets/shop/js/float_label.js') }}" type="text/babel"></script>
  28.             {{ encore_entry_script_tags('hu-vignette') }}
  29.         {% endblock %}
  30.     </head>
  31. {% endblock %}
  32. {% block content %}
  33.     <div id="loadingScreen" class="loading-screen d-none">
  34.         <div class="card">
  35.             <div class="card-body">
  36.                 <img src="{{ asset('assets/shop/images/spinner.gif') }}" alt="loading" style="width: 75px"/>
  37.                 <h5>Vă rugăm așteptați</h5>
  38.             </div>
  39.         </div>
  40.     </div>
  41.     <div id="app" class="pl-4 pr-4" style="font-family: Open Sans;">
  42.         <div class="w-100 mt-2">
  43.             <div class="telemedicine-title d-flex w-100 font-weight-bolder">{{ title }}</div>
  44.         </div>
  45.         <div style="padding: 30px; background: white; border-radius: 11px; border: solid 1px lightgray; margin-top: 10px;}">
  46.             {% include '@templates/Front/Institution/product_menu.html.twig' with {'type': type} %}
  47.         </div>
  48.     </div>
  49.     {{ encore_entry_script_tags('vue') }}
  50.     {{ encore_entry_script_tags('institution') }}
  51. {% endblock %}