templates/web/base.html.twig line 1

Open in your IDE?
  1. <html lang="hr">
  2. <head>
  3.     {{ include('web/components/front/meta.html.twig') }}
  4.     <link rel="canonical" href="{{ app.request.schemeAndHttpHost ~ app.request.pathInfo }}">
  5.     {% block seo %}{% endblock %}
  6.     <title>{% block title %}2sweet – Slastičarnica Zagreb | Svadbene torte i kolači{% endblock %}</title>
  7.     {# JSON-LD: LocalBusiness schema – pomaže Google-u i Google AI da razumije poslovni kontekst #}
  8.     <script type="application/ld+json">
  9.     {
  10.       "@context": "https://schema.org",
  11.       "@type": ["LocalBusiness", "Bakery"],
  12.       "name": "2sweet",
  13.       "description": "Slastičarnica u Zagrebu specijalizirana za svadbene torte, desert stolove i premium kolače po narudžbi. 15+ godina iskustva, 500+ svadbenih torti.",
  14.       "url": "https://2sweet.eu",
  15.       "telephone": "+38517079009",
  16.       "image": "https://2sweet.eu/img/sweet.png",
  17.       "logo": "https://2sweet.eu/img/sweet.png",
  18.       "priceRange": "€€",
  19.       "address": {
  20.         "@type": "PostalAddress",
  21.         "streetAddress": "Ksaver 195",
  22.         "postalCode": "10000",
  23.         "addressLocality": "Zagreb",
  24.         "addressRegion": "Grad Zagreb",
  25.         "addressCountry": "HR"
  26.       },
  27.       "geo": {
  28.         "@type": "GeoCoordinates",
  29.         "latitude": 45.8337,
  30.         "longitude": 15.9981
  31.       },
  32.       "sameAs": [
  33.         "https://www.facebook.com/2sweet.torte/",
  34.         "https://www.instagram.com/2sweettorte/"
  35.       ],
  36.       "hasOfferCatalog": {
  37.         "@type": "OfferCatalog",
  38.         "name": "Slastičarski proizvodi i usluge",
  39.         "itemListElement": [
  40.           { "@type": "Offer", "itemOffered": { "@type": "Service", "name": "Svadbene torte" } },
  41.           { "@type": "Offer", "itemOffered": { "@type": "Service", "name": "Desert stolovi" } },
  42.           { "@type": "Offer", "itemOffered": { "@type": "Service", "name": "Torte po narudžbi" } },
  43.           { "@type": "Offer", "itemOffered": { "@type": "Service", "name": "Kolači za proslave" } }
  44.         ]
  45.       },
  46.       "areaServed": {
  47.         "@type": "City",
  48.         "name": "Zagreb"
  49.       },
  50.       "knowsAbout": ["svadbene torte", "desert stolovi", "kolači po narudžbi", "rođendanske torte", "slastičarnica Zagreb"]
  51.     }
  52.     </script>
  53.     {% block stylesheets %}
  54.         {{ include('web/components/front/stylesheets.html.twig') }}
  55.     {% endblock %}
  56.     <!-- Google tag (gtag.js) -->
  57.     <script async src="https://www.googletagmanager.com/gtag/js?id=G-BPMSQQJF8Y">
  58.     </script>
  59.     <script>
  60.         window.dataLayer = window.dataLayer || [];
  61.         function gtag(){dataLayer.push(arguments);}
  62.         gtag('js', new Date());
  63.         gtag('config', 'G-BPMSQQJF8Y');
  64.     </script>
  65.     <meta name="google-site-verification" content="F80EsGfprLFOZbOMAOYG3c4iE6dvqC8SQtCMZrxzNyE" />
  66. </head>
  67. <body>
  68. {{ include('web/components/front/loader.html.twig') }}
  69. <div id="content-block">
  70.     {{ include('web/components/front/header.html.twig') }}
  71.     {% block body %}{% endblock %}
  72.     {{ include('web/components/front/footer.html.twig') }}
  73. </div>
  74. <div id="sibi-chat">
  75.     <button id="sibi-toggle" aria-controls="sibi-panel" aria-expanded="false">Chat sa Slađanom</button>
  76.     <div id="sibi-panel" class="is-closed" role="dialog" aria-label="Slađana chat">
  77.         <div class="sibi-header">
  78.             <span>Slađana – slatka asistentica</span>
  79.             <button type="button" class="sibi-close" id="sibi-close" aria-label="Zatvori chat">×</button>
  80.         </div>
  81.         <div class="sibi-messages" id="sibi-messages" aria-live="polite"></div>
  82.         <div class="sibi-quick" id="sibi-quick"></div>
  83.         <form class="sibi-form" id="sibi-form">
  84.             <input class="sibi-input" id="sibi-input" type="text" placeholder="Upiši poruku..." autocomplete="off" />
  85.             <button class="sibi-send" type="submit">Pošalji</button>
  86.         </form>
  87.     </div>
  88. </div>
  89. {% block javascripts %}
  90.     {{ include('web/components/front/footer-js.html.twig') }}
  91. {% endblock %}
  92. </body>
  93. </html>