templates/partials/callToActionBlock.html.twig line 1

Open in your IDE?
  1. {% block callToActionBlock %}
  2. <section id="about" class="about">
  3. <div class="container">
  4. <style>
  5. .section-title {
  6. text-align: left;
  7. }
  8. </style>
  9. <div class="section-title">
  10. </div>
  11. <div class="row content" style="margin-bottom: 6%; margin-top: -4%">
  12. {% if content.urlInternalLink[0] is defined and content.urlInternalLink[0].url and content.buttonText is defined %}
  13. <div class="col-lg-6 pt-4 pt-lg-0 content-flex-start">
  14. <a href="{{ content.urlInternalLink[0].url }}" class="btn-learn-more" style="font-size: 25px">{{ content.buttonText }}</a>
  15. </div>
  16. {% endif %}
  17. </div>
  18. </div>
  19. </section>
  20. {% endblock %}