{% extends "@openform_front_templates/base.html.twig" %}
{% block bodyAttr %}data-page="detail-page"{% endblock %}
{% set pageSubTitle = entity.Translation[app.request.locale].title %}
{% set metaTitle = entity.Translation[app.request.locale].metaTitle ? entity.Translation[app.request.locale].metaTitle : entity.Translation[app.request.locale].title %}
{% set metaDescription = entity.Translation[app.request.locale].metaDescription %}
{% set metaKeywords = entity.Translation[app.request.locale].metaKeywords %}
{% set pageImage = entity.imagePath ? openform_front_util.getImagePathByType(entity.Thumb,'list') : '' %}
{% macro tree(data) %}
<div style="padding:0px 0 15px 25px;">
{% for i in data %}
{{ i.bullet }}
<a
href="{{ i.url }}"
title="{{ i.metaTitle }}"
>
{{ i.title }}
</a>
<br>
{% if i.children %}
{{ _self.tree(i.children) }}
{% endif %}
{% endfor %}
</div>
{% endmacro %}
{% block content %}
{% include "@openform_front_templates/_blocks_sections/block.html.twig" with { sections: openform_front_util.getSections(entity)|length > 0 ? openform_front_util.getSections(entity)|slice(0, 1) : '' } %}
<section class="text-block" data-scroll-section>
<div class="text-block__wrapper container">
<h2 class="text-block__title home-title">
Mapa strony:
</h2>
<div class="text-block__inner">
<div class="text-block__content" style="line-height:200%;font-size:120%;padding-top:20px;">
{{ _self.tree(sitemap) }}
</div>
</div>
</div>
</section>
{% include "@openform_front_templates/_blocks_sections/block.html.twig" with { sections: openform_front_util.getSections(entity)|length > 0 ? openform_front_util.getSections(entity)|slice(1, openform_front_util.getSections(entity)|length) : '' } %}
{% endblock %}