src/PortalBundle/Resources/views/About/founders.html.twig line 1

Open in your IDE?
  1. {% extends '@Portal/template.html.twig' %}
  2. {% block head %}
  3.     <title>{{ 'founders.founders_seo_title'|trans({}, 'portal_base') }} VIDI</title>
  4.     <meta name="description" content="{{ 'founders.founders_seo_description'|trans({}, 'portal_base') }} VIDI">
  5.     <link rel="stylesheet" type="text/css" href="/dist/{{ MODE }}/portal/css/portalAboutFounders.css?{{ VERSION }}">
  6. {% endblock head %}
  7. {% block content %}
  8. <section class="breadcrumbs__new">
  9.     <div class="container">
  10.         <ol class="vidi_breadcrumbs__new" itemscope itemtype="https://schema.org/BreadcrumbList">
  11.             <li class="marker__none" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  12.                 <a itemprop="item" href="{{ path('portal_homepage') }}">
  13.                     <span class="breadcrumbs__link" itemprop="name">VIDI.UA</span>
  14.                 </a>
  15.                 <meta itemprop="position" content="1"/>
  16.             </li>
  17.             <div class="arrow-bc"></div>
  18.             <li class="marker__none" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  19.                 <a itemprop="item" href="{{ path('portal_about') }}">
  20.                     <span class="breadcrumbs__link" itemprop="name">{{ 'founders.about_company'|trans({}, 'portal_base') }}</span>
  21.                 </a>
  22.                 <meta itemprop="position" content="2"/>
  23.             </li>
  24.             <div class="arrow-bc"></div>
  25.             <li class="marker__none" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  26.                 <span style="color: #ABABAB" class="breadcrumbs__link" itemprop="name">{{ 'founders.founders_title'|trans({}, 'portal_base') }}</span>
  27.                 <meta itemprop="position" content="3"/>
  28.             </li>
  29.         </ol>
  30.     </div>
  31. </section>
  32. <section class="section__founders__title">
  33.     <div class="container">
  34.         <h1 class="founders__title">{{ 'founders.founders_title'|trans({}, 'portal_base') }}</h1>
  35.     </div>
  36. </section>
  37. {% include '@Portal/Modules/founders.html.twig' %}
  38. <section class="section__founders">
  39.     <div class="container">
  40.         <div>
  41.             <img class="founders-tab-img founders-tab-img-mob-desk" src="{{ founders.media.image }}" alt="{{ founders.title }}">
  42.             <img class="founders-tab-img founders-tab-img-mob" src="{{ founders.media.image_mobile }}" alt="{{ founders.title }}">
  43.             <p class="founders-tab-text">{{ founders.text|raw }}</p>
  44.         </div>
  45.     </div>
  46. </section
  47. {% endblock %}