templates/investor-relations/regulatory-news-service.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block title %}Regulatory News Service{% endblock %}
  3. {% block stylesheets %}
  4.     {{ parent() }}
  5.     {{ encore_entry_link_tags('investor-relations') }}
  6. {% endblock %}
  7. {% block body %}
  8.     <div class="bg-light-green pt-xl-5">
  9.         <h1 class="mb-0 py-5 text-center text-white">Regulatory News Service<span class="yellow">.</span></h1>
  10.         <div class="container-fluid d-flex mt-xl-5 pb-7">
  11.             <div class="col-md-1"></div>
  12.             <div class="bg-light-grey col-md-10 col-12 overflow-hidden p-3 rounded-6" id="news-feed-container">
  13.                 <iframe class="w-100" src="https://otp.tools.investis.com/clients/uk/fw_thorpe_plc/rns/regulatory-news.aspx?culture=en-GB" rel="nofollow noopener"></iframe>
  14.             </div>
  15.             <div class="col-md-1"></div>
  16.         </div>
  17.     </div>
  18. {% endblock %}