templates/group-companies/portland-traffic.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Portland Lighting{% endblock %}
  3. {% block stylesheets %}
  4.     {{ parent() }}
  5.     {{ encore_entry_link_tags('group-companies') }}
  6. {% endblock %}
  7. {% block body %}
  8.     <div class="group-company-top-banner position-relative w-100" id="portland-traffic-top-banner">
  9.         <div class="bg-white-90 inner-circle position-absolute start-50 translate-middle">
  10.             <img class="position-absolute start-50 top-50 translate-middle wider-gc-logo" src="{{ asset('build/images/group-logos/portland-traffic-colour.svg') }}" alt="Portland Traffic" title="Portland Traffic">
  11.         </div>
  12.         <img class="bottom-0 d-xl-block d-none position-absolute start-0 w-100" id="white-curves" src="{{ asset('build/images/white-curves.svg') }}" alt="white curves">
  13.         <a href="#company-info" rel="nofollow">
  14.             <img src="{{ asset('build/images/yellow-down-arrow.svg') }}" alt="Yellow arrow" class="bottom-0 position-absolute start-50 translate-middle yellow-down-arrow z-index-1">
  15.         </a>
  16.     </div>
  17.     <div class="bg-white container-fluid d-flex flex-column-reverse flex-xl-row py-5 py-xl-7" id="company-info">
  18.         <div class="col-1"></div>
  19.         <div class="col-xl-3 col-12 px-sm-5 px-xl-0">
  20.             <ul class="list-unstyled pb-xl-5 pt-xl-0 py-5">
  21.                 <li>
  22.                     <h3 class="mid-green">Information</h3>
  23.                 </li>
  24.                 <li class="my-1">
  25.                     <img class="d-inline gc-info-icons me-2" src="{{ asset('build/images/group-companies/location.svg') }}" alt="Location Pin">
  26.                     <p class="d-inline dark-green fs-5">Walsall, United Kingdom</p>
  27.                 </li>
  28.                 <li class="my-1">
  29.                     <img class="d-inline gc-info-icons me-2" src="{{ asset('build/images/group-companies/web-icon.svg') }}" alt="Website Icon"><a href="https://portlandtraffic.co.uk/" class="d-inline dark-green fs-5 hover-yellow ms-1 text-decoration-none" rel="noopener">www.portlandtraffic.co.uk</a>
  30.                 </li>
  31.             </ul>
  32.             <h4 class="mid-green text-start">Market Sectors</h4>
  33.             <ul class="dark-green list-unstyled pb-5 text-start">
  34.                 <li class="my-1">
  35.                     <img class="d-inline gc-market-icons me-2" src="{{ asset('build/images/group-companies/infrastructure-icon.svg') }}" alt="Infrastructure icon">
  36.                     <p class="d-inline fs-5">Infrastructure</p>
  37.                 </li>
  38.             </ul>
  39.             <h4 class="mid-green text-start">Key Products</h4>
  40.             <ul class="dark-green ps-4 text-start">
  41.                 <li>
  42.                     <p class="fs-5">Lighting for road safety</p>
  43.                 </li>
  44.             </ul>
  45.         </div>
  46.         <div class="col-1 d-xl-none"></div>
  47.         <div class="col-xl-6 col-12 mid-green ms-xl-3 px-sm-5 px-xl-0">
  48.             <p class="fs-5">Portland Traffic has evolved from Portland Lighting and is focused solely on the traffic lighting market. Created by a team with a combined 100 years’ experience in road traffic safety, the company is focused on designing and manufacturing value engineered products utilising the latest technology and manufacturing techniques.</p>
  49.             <p class="fs-5">The company operates from a modern 1394m² facility in Walsall, West Midlands, which was purposely designed to enable the fast turnaround of customer orders.</p>
  50.         </div>
  51.         <div class="col-xl-1"></div>
  52.     </div>
  53. {% endblock %}