templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en" prefix="og: //ogp.me/ns#">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.   <meta name="viewport" content="width=device-width, initial-scale=1" />
  7.     <title>{% block title %}{% endblock %}</title>
  8.     <meta name="description" content="{% block desc %}{% endblock %}">
  9.     <link rel="canonical" href="https://chill-bet.in/{% block canonical %}{% endblock %}" />
  10.     <link rel="shortcut icon" href="/public/img/icon.png" type="image/x-icon">
  11.     <link rel="stylesheet" href="/public/css/style.css">
  12.     <link rel="stylesheet" href="/public/css/response.css">
  13.  <meta property="og:title" content="{{ block('title') }}" />
  14.     <meta property="og:type" content="website" />
  15.     <meta property="og:url" content="https://chill-bet.in/{{ block('canonical') }}" />
  16.     <meta property="og:image" content="https://chill-bet.in/public/img/logo-desk.png" />
  17.   <meta property="og:locale" content="en_IN" />
  18.   <meta property="og:site_name" content="Chillbet India" /> 
  19.     
  20.     <script type="application/ld+json">
  21. {
  22.   "@context": "https://schema.org",
  23.   "@type": "Product",
  24.    "name": "Chillbet",
  25.   "aggregateRating": {
  26.     "@type": "AggregateRating",
  27.     "ratingValue": "5",
  28.     "reviewCount": "1274"
  29.   }}
  30.   </script>
  31.     
  32.     <script type="application/ld+json">
  33. {
  34.   "@context": "https://schema.org",
  35.   "@type": "Article",
  36.   "mainEntityOfPage": {
  37.     "@type": "WebPage",
  38.     "@id": "https://chill-bet.in/{{ block('canonical') }}"
  39.   },
  40.   "headline": "{{ block('heading') }}",
  41.   "image": "https://chill-bet.in/public/img/logo-desk.png",  
  42.   "author": {
  43.     "@type": "Organization",
  44.     "name": "Chillbet",
  45.     "url": "https://chill-bet.in/"
  46.   },  
  47.   "publisher": {
  48.     "@type": "Organization",
  49.     "name": "Chillbet",
  50.     "logo": {
  51.       "@type": "ImageObject",
  52.       "url": "https://chill-bet.in/public/img/logo-desk.png"
  53.     }
  54.   },
  55.   "datePublished": ""
  56. }
  57. </script>
  58. <script type="application/ld+json">
  59. {
  60.   "@context": "https://schema.org/", 
  61.   "@type": "BreadcrumbList", 
  62.   "itemListElement": [{
  63.     "@type": "ListItem", 
  64.     "position": 1, 
  65.     "name": "Casino",
  66.     "item": "https://chill-bet.in/{{ block('canonical') }}"  
  67.   },{
  68.     "@type": "ListItem", 
  69.     "position": 2, 
  70.     "name": "🔥 Chillbet ðŸ”¥",
  71.     "item": "https://chill-bet.in/{{ block('canonical') }}#c1"  
  72.   }]
  73. }
  74. </script>
  75.     
  76. </head>
  77. <body>
  78.     <header>
  79.         {% include 'header.html.twig' %}
  80.     </header>
  81.     <section class="intro">
  82.         <h1>
  83.             {% block heading %}{% endblock %}
  84.         </h1>
  85.         
  86.         <p>
  87.            {% block short_text %}{% endblock %}
  88.         </p>
  89.         
  90.         {% include 'button.html.twig' %}
  91.     </section>
  92.     {% block content %}{% endblock %}
  93. <footer>
  94.     {% include 'footer.html.twig' %}
  95. </footer>
  96. <script src="/public/js/index.js"></script>  
  97. </body>
  98. </html>