{% if editmode %}
<div class="admin-p-text admin-div-text">
<p>Cím:</p>
<p>{{ pimcore_input('title', {'placeholder': 'Cím...'}) }}</p>
<p>Listázandó hír Tag-ek:</p>
<p>
{{ pimcore_multiselect('tags', {
'width': 200,
'height': 150,
'store': selectStore,
'maxItem': 10,
}) }}
</p>
<p>
Listázandó hír elemek száma:
{{ pimcore_input('limit', {
'width': 100,
'placeholder': 5
}) }}
</p>
<p>Alsó link:</p>
<p>{{ pimcore_link('bottomLink') }}</p>
</div>
{% elseif newsList is defined and newsList %}
<div class="contact-container padding-top-bottom-40 mt-5">
{% if not pimcore_input('title').isEmpty() %}
<div class="container">
<h2 class="section-title">{{ pimcore_input('title') }}</h2>
</div>
{% endif %}
<div class="container">
<div class="padding-top-80 row d-flex justify-content-center">
{% for news in newsList %}
{% include 'default/newslistitem.html.twig' with {news: news} only %}
{% endfor %}
</div>
</div>
{% if not pimcore_link('bottomLink').isEmpty() %}
<div class="container text-center">
{{ pimcore_link('bottomLink', {
'class': 'btn btn-primary',
'textPrefix': '<span>',
'textSuffix': '</span>'
}) }}
</div>
{% endif %}
</div>
{% endif %}