templates/network/auction/widgets/auction_widget_press.html.twig line 1

Open in your IDE?
  1. {% set title = 'external'|trans %}
  2. {% if auction.link and auction.link.direct %}
  3.   {% set btnLabel = auction.link.text|default(auction.link.direct|url_meta_title) %}
  4.   {% embed 'network/widget/widget.html.twig' %}
  5.     {% import 'macros/button.macro.twig' as button %}
  6.     {% block content %}
  7.       <div class="flex items-center text-neutral-900">
  8.         {{ button.link(btnLabel, 'primary', auction.link.direct, { size: 'sm', icon_before: 'weblink', attr: { target: '_blank', class: 'w-full' }}) }}
  9.       </div>
  10.     {% endblock %}
  11.   {% endembed %}
  12. {% endif %}