templates/investor-relations/share-details.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block title %}Share Details{% endblock %}
  3. {% block stylesheets %}
  4.     {{ parent() }}
  5.     {{ encore_entry_link_tags('investor-relations') }}
  6. {% endblock %}
  7. {% block body %}
  8.     <div class="bg-mid-green pt-xl-5">
  9.         <h1 class="mb-0 pb-4 pt-xl-7 py-5 text-center text-white">Share Details<span class="yellow">.</span></h1>
  10.         <div class="container-fluid d-flex pb-7 py-3 text-center">
  11.             <div class="col-xl-3 col-md-1"></div>
  12.             <div class="col-xl-6 col-md-1 col-12 text-white">
  13.                 <p class="fs-5 mb-5">The shares of FW Thorpe Plc are listed on the London Stock Exchange. Exchanges where quoted and traded: London Stock Exchange AIM FW Thorpe Plc is subject to the UK City Code on Takeovers and Mergers. Restriction in transfer of AIM securities – there are no restrictions on the transfer of securities.</p>
  14.                 <p class="fs-5 mb-0">Number of ordinary shares in issue: <strong>118,935,590</strong></p>
  15.                 <p class="fs-5 mb-0">Number of shares held in treasury: <strong>1,593,682</strong></p>
  16.                 <p class="fs-5 mb-0">Percentage of shares held in treasury: <strong>1.3%</strong></p>
  17.                 <p class="fs-5 mb-0">Number of shares with voting rights: <strong>117,341,908</strong></p>
  18.                 <p class="fs-5">Percentage of shares not held in public hands: <strong>46.0%</strong></p>
  19.                 <table class="bg-light-grey dark-green mt-5 w-100" id="share-details-table">
  20.                     <tr>
  21.                         <th class="px-2 py-4">Significant shareholders</th>
  22.                         <th class="px-2 py-4">Number of ordinary shares held</th>
  23.                         <th class="px-2 py-4">Percentage of shares with voting rights</th>
  24.                     </tr>
  25.                     <tr>
  26.                         <td class="px-2 py-4">Mr AB Thorpe</td>
  27.                         <td class="px-2 py-4">25.9m</td>
  28.                         <td class="px-2 py-4">22.1%</td>
  29.                     </tr>
  30.                     <tr>
  31.                         <td class="px-2 py-4">Mr IA Thorpe</td>
  32.                         <td class="px-2 py-4">25.0m</td>
  33.                         <td class="px-2 py-4">21.4%</td>
  34.                     </tr>
  35.                     <tr>
  36.                         <td class="px-2 py-4">Estate of CM Brangwin</td>
  37.                         <td class="px-2 py-4">7.2m</td>
  38.                         <td class="px-2 py-4">6.2%</td>
  39.                     </tr>
  40.                     <tr>
  41.                         <td class="px-2 py-4">Liontrust Investment Partners LLP</td>
  42.                         <td class="px-2 py-4">7.0m</td>
  43.                         <td class="px-2 py-4">6.0%</td>
  44.                     </tr>
  45.                 </table>
  46.                 <p class="pt-4 text-white">Last updated: 10<sup>th</sup> September 2024</p>
  47.             </div>
  48.             <div class="col-xl-3 col-md-1"></div>
  49.         </div>
  50.     </div>
  51. {% endblock %}