templates/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta content="width=device-width, initial-scale=1.0" name="viewport">
  6.         <title>{% block title %}EMM KAY GAS AGENCY, Ludhiana{% endblock %}</title>
  7.         <meta content="{% block description %}Welcome description{% endblock %}" name="description">
  8.         <meta content="{% block keywords %}Welcome keywords{% endblock %}" name="keywords">
  9.         {% block meta %}
  10.         {% endblock %}
  11.         <!-- Favicons -->
  12.         <link href="{{asset('')}}site/favicon.png" rel="icon">
  13.         <link href="{{asset('')}}site/favicon.png" rel="apple-touch-icon">
  14.         <!-- Google Fonts -->
  15.         <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet" media="nope!" onload="this.media = 'all'">
  16.         <!-- Vendor CSS Files -->
  17.         <link href="{{asset('theme/')}}assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="nope!" onload="this.media = 'all'">
  18.         {# <link href="{{path('minify_css',{'filePath': 'theme/assets/vendor/bootstrap/css/bootstrap.min.css' })}}" rel="stylesheet" media="nope!" onload="this.media = 'all'"> #}
  19.         <link href="{{path('minify_css',{'filePath': 'theme/assets/vendor/bootstrap-icons/bootstrap-icons.css' })}}" rel="stylesheet"  media="nope!" onload="this.media = 'all'">
  20.         {# <link href="{{asset('theme/')}}assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet"  media="nope!" onload="this.media = 'all'"> #}
  21.         <link href="{{asset('theme/')}}assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet"  media="nope!" onload="this.media = 'all'">
  22.         <link href="{{asset('theme/')}}assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet"  media="nope!" onload="this.media = 'all'">
  23.         <link href="{{asset('theme/')}}assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet"  media="nope!" onload="this.media = 'all'">
  24.         <!-- Template Main CSS File -->
  25.         <link href="{{asset('theme/')}}assets/css/style.css" rel="stylesheet">
  26.         {# <link href="{{path('css')}}" rel="stylesheet"> #}
  27.         <style>
  28.             {% include 'style.css' %}
  29.         </style>
  30.         {% block stylesheets %}
  31.             {{ encore_entry_link_tags('app') }}
  32.         {% endblock %}
  33.         {% block javascripts %}
  34.             {{ encore_entry_script_tags('app') }}
  35.         {% endblock %}
  36.     </head>
  37.     <body>
  38.         <!-- ======= Header ======= -->
  39.         {% block header %}
  40.         {% endblock %}
  41.         <!-- ======= end Header ======= -->
  42. {% block carousel %}
  43.         {% endblock %}
  44.         <!-- ======= Hero Section ======= -->
  45.         {% block hero %}
  46.         {% endblock %}
  47.         <!-- End Hero -->
  48.         <main id="main">
  49.             {% block body %}{% endblock %}
  50.         </main><!-- End #main -->
  51.         <!-- ======= Footer ======= -->
  52.         {% block footer %}
  53.             {% include "website/footer.html.twig" %}
  54.         {% endblock %}
  55.         <!-- End Footer -->
  56.         <a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
  57.         <!-- Vendor JS Files -->
  58.         <script src="{{asset('theme/')}}assets/vendor/purecounter/purecounter_vanilla.js"></script>
  59.         <script src="{{asset('theme/')}}assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
  60.         <script src="{{asset('theme/')}}assets/vendor/glightbox/js/glightbox.min.js"></script>
  61.         <script src="{{asset('theme/')}}assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
  62.         <script src="{{asset('theme/')}}assets/vendor/swiper/swiper-bundle.min.js"></script>
  63.         <script src="{{asset('theme/')}}assets/vendor/waypoints/noframework.waypoints.js"></script>
  64.         {# <script src="{{asset('theme/')}}assets/vendor/php-email-form/validate.js"></script> #}
  65.         <!-- Template Main JS File -->
  66.         <script src="{{asset('theme/')}}assets/js/main.js"></script>
  67.     </body>
  68. </html>