templates/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.         <title>{% block title %}Welcome!{% endblock %}</title>
  7.         <meta name="title" content="Welcome to ONLD UK : ONLD UK serves as RSP Nepal's official overseas department based in the United Kingdom." />
  8.         <meta name="description" content="Overseas Nepalese Liaison Department(ONLD) UK was formed in May 2023 as a conjoined organization of Nepalese residing in the UK who have hope, faith and trust towards the objectives of the National Independent Party (Rastriya Swatantra Party-RSP) of Nepal." />
  9.         <!-- Open Graph / Facebook -->
  10.         <meta property="og:type" content="website" />
  11.         <meta property="og:url" content="https://onld.co.uk/" />
  12.         <meta property="og:title" content="Welcome to ONLD UK : ONLD UK serves as RSP Nepal's official overseas department based in the United Kingdom." />
  13.         <meta property="og:description" content="Overseas Nepalese Liaison Department(ONLD) UK was formed in May 2023 as a conjoined organization of Nepalese residing in the UK who have hope, faith and trust towards the objectives of the National Independent Party (Rastriya Swatantra Party-RSP) of Nepal." />
  14.         <meta property="og:image" content="https://onld.co.uk/images/banner_image.jpg" />
  15.         <!-- Twitter -->
  16.         <meta property="twitter:card" content="summary_large_image" />
  17.         <meta property="twitter:url" content="https://onld.co.uk/" />
  18.         <meta property="twitter:title" content="Welcome to ONLD UK : ONLD UK serves as RSP Nepal's official overseas department based in the United Kingdom." />
  19.         <meta property="twitter:description" content="Overseas Nepalese Liaison Department(ONLD) UK was formed in May 2023 as a conjoined organization of Nepalese residing in the UK who have hope, faith and trust towards the objectives of the National Independent Party (Rastriya Swatantra Party-RSP) of Nepal." />
  20.         <meta property="twitter:image" content="https://onld.co.uk/images/banner_image.jpg" />
  21.         <!-- Meta Tags Generated with https://metatags.io -->
  22.         <link rel="icon" href="/images/logo.svg">
  23.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  24.         {% block stylesheets %}
  25.             {{ encore_entry_link_tags('app') }}
  26.         {% endblock %}
  27.         {% block javascripts %}
  28.             {{ encore_entry_script_tags('app') }}
  29.         {% endblock %}
  30.     </head>
  31.     <body>
  32.         {% import 'macros/toast.html.twig' as toast %}
  33.         <div class="backdrop xl:hidden hidden fixed inset-0 bg-neutral-900/80 backdrop-blur z-20"></div>
  34.         {% include 'header.html.twig' %} <!-- header -->
  35.         
  36.         {% for success in app.flashes('success') %}
  37.           {{ toast.displayToast('success', success, 3000) }}
  38.         {% endfor %}
  39.         {% for notice in app.flashes('notice') %}
  40.           {{ toast.displayToast('info', notice, 3000) }}
  41.         {% endfor %}
  42.         {% for error in app.flashes('error') %}
  43.             {{ toast.displayToast('warning', error, 3000) }}
  44.         {% endfor %}
  45.         <div class="w-full pt-16">
  46.             {% if is_granted('IS_IMPERSONATOR') %}
  47.                 <div class="bg-yellow-300 p-4 flex flex-wrap justify-between">
  48.                     <div>Logged in as: [{{ app.user.firstName }}] [{{ app.user.id }}] [{{ app.user.email }}]</div>
  49.                     <div class="pt-2">
  50.                         <a href="{{ impersonation_exit_path('/admin/user') }}" class="lg:inline
  51.               hidden
  52.               bg-red-500
  53.               hover:bg-transparent
  54.               border
  55.               border-red-700
  56.               transition-all
  57.               duration-300
  58.               py-2
  59.               px-5
  60.               rounded-full
  61.               text-base
  62.               font-semibold
  63.               leading-6
  64.               text-white
  65.               hover:text-red-400
  66.               lg:w-auto
  67.               w-full
  68.               text-center
  69.               lg:mr-5">Exit Impersonation </a>
  70.                     </div>
  71.                 </div>
  72.             {% endif %}
  73.             {% block body %}{% endblock %}
  74.         </div>
  75.         {% include 'footer.html.twig' %}
  76.     </body>
  77. </html>