templates/modul/hizmetler_ic.html.twig line 1

Open in your IDE?
  1. {% extends 'siteBase.html.twig' %}
  2. {% block dil %}{{ app.session.get('dil')['kisa'] }}{% endblock %} {# tr or en #}
  3. {% block title %}{{ icerik.sayfabasligi|html_entity_decode|raw }}{% endblock %}
  4. {% block keywords %}{{ icerik.anahtarkelimeler|html_entity_decode|raw }}{% endblock %}
  5. {% block description %}{{ icerik.sayfaaciklamasi|html_entity_decode|raw }}{% endblock %}
  6. {% block title2 %}{{ icerik.sayfabasligi|html_entity_decode|raw }}{% endblock %}
  7. {% block description2 %}{{ icerik.sayfaaciklamasi|html_entity_decode|raw }}{% endblock %}
  8. {% block image_alt %}{{ icerik.sayfabasligi|html_entity_decode|raw }}{% endblock %}
  9. {% block title3 %}{{ icerik.sayfabasligi|html_entity_decode|raw }}{% endblock %}
  10. {% block description3 %}{{ icerik.sayfaaciklamasi|html_entity_decode|raw }}{% endblock %}
  11. {% block image %}{{ 'siteYolu'|ayarlar~'storage/' }}{{ resimler[0]|default(icerik.resim|default('logo.webp')) }}{% endblock %}
  12. {% block image2 %}{{ 'siteYolu'|ayarlar~'storage/' }}{{ resimler[0]|default(icerik.resim|default('logo.webp')) }}{% endblock %}
  13.     {% block body %}
  14.     {% include 'siteBase/breadcrumbs.html.twig' %}
  15.   <section class="ep-project-details-section pt-120">
  16.       <div class="container">
  17.      
  18.         <div class="project-content">
  19.           <p>{{ icerik.metin|html_entity_decode|raw }}</p>
  20.           <div class="mid-image pt-30 pb-40">
  21.             <div class="row g-4">
  22.               {% for resim in icerik.resimler|split(',') %}
  23.               {% if resim|default('')!='' %}
  24.                   <div class="col-lg-4 col-sm-6">
  25.                        <a href="/storage/{{resim}}" data-fancybox="" class="w-100">
  26.                     <div class="img rounded-20 reveal zoom-out overflow-hidden">
  27.                    
  28.                       {{ resim|imgOlustur(300,10,'cover')|raw }}
  29.               
  30.                     </div>
  31.                                  </a>
  32.                   </div>
  33.               {% endif %}
  34.               {% endfor %}
  35.             </div>
  36.           </div>
  37.           
  38.         </div>
  39.         
  40.       </div>
  41.     </section>
  42.                     
  43.                     {% endblock %}
  44. {% block javascripts %}{% endblock %}