templates/components/HeroBigButton.html.twig line 1

Open in your IDE?
  1. {% set colourClass = colour == 'primary' ? 'hero-big-button--primary' : 'hero-big-button--secondary' %}
  2. <a href="{{ url }}" class="hero-big-button {{ colourClass }}">
  3. {% if block('icon') %}
  4. <span class="hero-big-button__icon">
  5. {% block icon %}{% endblock %}
  6. </span>
  7. {% endif %}
  8. <span class="hero-big-button__text">
  9. {{ text }}
  10. </span>
  11. <span class="hero-big-button__desc">
  12. {{ description }}
  13. </span>
  14. </a>