src/Package/Openform/Front/Templates/_blocks_sections/_slides/_blocks/_btn.html.twig line 1

Open in your IDE?
  1. {% if items|length > 0 %}
  2.     <div class="block-slider__section__btns">
  3.         {% for item in items %}
  4.             <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>
  5.         {% endfor %}
  6.         
  7.     </div>
  8. {% endif %}