{% if items|length > 0 %}
<div class="block-slider__section__btns">
{% for item in items %}
<a href="{{item.Translation[app.request.locale].link}}" class="block-slider__section__btn" style="border-color:{{item.buttonBorderColor|default('#231F17')}}; border-width: {{entity.buttonBorderWidth|default(1)}}px; color:{{item.colorTitle}};background:{{item.colorTitleBackground}}; {{item.textBlockPaddingTop or item.textBlockPaddingTop == 0 ? 'padding-top: ' ~ item.textBlockPaddingTop ~ 'px;'}} {{item.textBlockPaddingBottom or item.textBlockPaddingBottom == 0 ? 'padding-bottom: ' ~ item.textBlockPaddingBottom ~ 'px;'}} {{item.textBlockPaddingLeft or item.textBlockPaddingLeft == 0 ? 'padding-left: ' ~ item.textBlockPaddingLeft ~ 'px;'}} {{item.textBlockPaddingRight or item.textBlockPaddingRight == 0 ? 'padding-right: ' ~ item.textBlockPaddingRight ~ 'px;'}}" ><span>{{item.Translation[app.request.locale].buttonLabel}}</span></a>
{% endfor %}
</div>
{% endif %}