{% extends 'siteBase.html.twig' %}
{% block dil %}{{ app.session.get('dil')['kisa'] }}{% endblock %} {# tr or en #}
{% block title %}{{ icerik.sayfabasligi|html_entity_decode|raw }}{% endblock %}
{% block keywords %}{{ icerik.anahtarkelimeler|html_entity_decode|raw }}{% endblock %}
{% block description %}{{ icerik.sayfaaciklamasi|html_entity_decode|raw }}{% endblock %}
{% block title2 %}{{ icerik.sayfabasligi|html_entity_decode|raw }}{% endblock %}
{% block description2 %}{{ icerik.sayfaaciklamasi|html_entity_decode|raw }}{% endblock %}
{% block image_alt %}{{ icerik.sayfabasligi|html_entity_decode|raw }}{% endblock %}
{% block title3 %}{{ icerik.sayfabasligi|html_entity_decode|raw }}{% endblock %}
{% block description3 %}{{ icerik.sayfaaciklamasi|html_entity_decode|raw }}{% endblock %}
{% block image %}{{ 'siteYolu'|ayarlar~'storage/' }}{{ resimler[0]|default(icerik.resim|default('logo.webp')) }}{% endblock %}
{% block image2 %}{{ 'siteYolu'|ayarlar~'storage/' }}{{ resimler[0]|default(icerik.resim|default('logo.webp')) }}{% endblock %}
{% block body %}
{% include 'siteBase/breadcrumbs.html.twig' %}
<section class="ep-project-details-section pt-120">
<div class="container">
<div class="project-content">
<p>{{ icerik.metin|html_entity_decode|raw }}</p>
<div class="mid-image pt-30 pb-40">
<div class="row g-4">
{% for resim in icerik.resimler|split(',') %}
{% if resim|default('')!='' %}
<div class="col-lg-4 col-sm-6">
<a href="/storage/{{resim}}" data-fancybox="" class="w-100">
<div class="img rounded-20 reveal zoom-out overflow-hidden">
{{ resim|imgOlustur(300,10,'cover')|raw }}
</div>
</a>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
</section>
{% endblock %}
{% block javascripts %}{% endblock %}