templates/siteBase.html.twig line 1

Open in your IDE?
  1. {{ ''|site_istatistik }}
  2. {% set currentPath = path(app.request.attributes.get('_route'),
  3.     app.request.attributes.get('_route_params')) %}
  4. {% set sosyalAglar = ''|site_sosyalAglar %}
  5. {% set menuler = ''|site_menuGetir %}
  6. {% set veriler = ''|anasayfaIcerikleri %}
  7. {% set iletisimLink = ''|site_anaLink~veriler[4][0].seo %}
  8. {% set footerSayfaDilgrup = ''|footerSayfaDilgrup %}
  9. {% set footerMetin = ''|site_footerMetin %}
  10. {% if sayfa|default('')!='' %}
  11.     {% set sayfaAdi = sayfa.adi %}
  12.     {% set ustMenuler = sayfa.dilgrup|ustMenuler(kategori.dilgrup|default(''),icerik.adi|default('')~'-'~icerik.seourl|default('')) %}
  13.    
  14.    {% if icerik|default('')=='' %}
  15.          {% if sayfa.icIcerik==1 and sayfa.kategori==0 %}
  16.             {% if icerikler|default('')!='' %}
  17.                 {% set icerikler = icerikler|veriYenile(sayfa.seo) %}
  18.             {% endif %}
  19.         {% endif %}    
  20.         {% if sayfa.kategori==1 %}        
  21.               {% set kategoriler = kategoriler|kategoriVeriYenile(sayfa.seo) %}
  22.               {% if icerikler|default('')!='' %}
  23.                 {% set icerikler = icerikler|veriYenile(sayfa.seo,1) %}
  24.               {% endif %}
  25.         {% endif %}
  26.          
  27.         {% if kategori|default('')!='' %}
  28.             {% set sayfaAdi = kategori.adi %}
  29.             {% set kategoriler = kategoriler|kategoriVeriYenile(sayfa.seo) %}
  30.         {% endif %}
  31.      {% endif %}
  32.     {% if icerik|default('')!='' %}
  33.         {% set sayfaAdi = icerik.adi|html_entity_decode|raw %}
  34.         {% set solMenuler = sayfa.dilgrup|icerikSolMenuler(kategori.dilgrup|default('')) %}
  35.     {% endif %}
  36. {% endif %}
  37. <!DOCTYPE html>
  38. <html lang="{% block dil %}{% endblock %}">
  39.     <head>
  40.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  41.         <meta content="width=device-width, initial-scale=1.0, maximum-scale.=6.0, user-scalable=yes" name="viewport" />
  42.         <title>{{ 'siteAdi'|ayarlar(app.session.get('dil')['id']) }} : {% block title %}{% endblock %}</title>
  43.         <meta name="keywords" content="{% block keywords %}{% endblock %}">
  44.         <meta name="description" content="{% block description %}{% endblock %}">
  45.         <meta name=”geo.position” content=”{{ 'position'|ayarlar(app.session.get('dil')['id']) }}“>
  46.         <meta name=”geo.placename” content=”{{ 'placeName'|ayarlar(app.session.get('dil')['id']) }}“>
  47.         <meta name=”geo.region” content=”{{ 'region'|ayarlar(app.session.get('dil')['id']) }}“>
  48.         <meta property="og:site_name" content="{{ 'siteAdi'|ayarlar }}">
  49.         <meta property="og:title" content="{{ 'siteAdi'|ayarlar(app.session.get('dil')['id']) }} : {% block title2 %}{% endblock %}">
  50.         <meta property="og:description" content="{% block description2 %}{% endblock %}">
  51.         <meta property="og:type" content="article">
  52.         <meta property="og:url" content="{{ ''|site_anaLink~currentPath|slice(1,currentPath|length) }}">
  53.         <meta property="og:image" content="{% block image %}{% endblock %}">
  54.         <meta property="og:image:alt" content="{% block image_alt %}{% endblock %}">
  55.         <meta name="twitter:card" content="summary_large_image">
  56.         <meta name="twitter:title" content="{{ 'siteAdi'|ayarlar(app.session.get('dil')['id']) }} : {% block title3 %}{% endblock %}">
  57.         <meta name="twitter:description" content="{% block description3 %}{% endblock %}">
  58.         <meta name="twitter:image" content="{% block image2 %}{% endblock %}">
  59.         <link rel="canonical" href="{{ ''|site_anaLink~currentPath|slice(1,currentPath|length) }}" />
  60.         <link rel="shortcut icon" href="{{ path('panel_storage',{'file':'favicon.webp'}) }}" type="image/x-icon">
  61.         <link rel="icon" href="{{ path('panel_storage',{'file':'favicon.webp'}) }}" type="image/x-icon">
  62.         {% include 'siteBase/style.html.twig' %}
  63.         {% block stylesheets %}{% endblock %}
  64.     </head>
  65.         {% include 'siteBase/header.html.twig' %}
  66.         {% block body %}{% endblock %}
  67.         {% include 'siteBase/footer.html.twig' %}
  68.         {% include 'siteBase/js.html.twig' %}
  69.         {% if 'whatsapp'|ayarlar==1 %}
  70.             <div class="whatsapp" >
  71.                 <div class="whatsapp-content animate__heartBeat" >
  72.                     <a href="https://api.whatsapp.com/send/?phone=+9{{ 'gsm'|site_iletisimBilgileri|replace({'(':'',')':'',' ':''}) }}&text={{ 'Merhaba, bilgi almak istiyorum.'|ceviri }}" target="_blank">
  73.                         <img src="{{asset('whatsapp.webp')}}" width="50" height="50" alt="Whatsapp Destek Hattı" class="whatsapp-icon">
  74.                     </a>
  75.                 </div>
  76.             </div>
  77.         {% endif %}
  78.         {% block javascripts %}{% endblock %}
  79.     </body>
  80. </html>