File: /var/www/hcv/wp-content/themes/hockey/templates/partials/dropdown-button.twig
<div class="dd-button">
<div class="btn {% if btn_style is defined and btn_style is not null %} {{ btn_style }} {% else %} btn--hollow {% endif %} small dd-button__toggle js-dd-button" >{{ buttonTitle }}</div>
{% if dropdownList is not empty %}
<div class="dd-button__content js-dd-button-dropdown {{location}}" >
{% for item in dropdownList %}
<a href="{{item.link == "" ? item.file : item.link}}" class="dd-button__link">
<div class="title h5">{{item.title}}</div>
<div class="desc h5">{{item.description}}</div>
</a>
{% endfor %}
</div>
{% endif %}
</div>