templates/partials/services/_services.html.twig line 1

Open in your IDE?
  1. <!--Start Service-->
  2. <section class="service-section web-servic pad-tb" id="services">
  3. <div class="container">
  4. <div class="row justify-content-center">
  5. <div class="col-lg-8">
  6. <div class="common-heading">
  7. <span>Services We Provide</span>
  8. <h2 class="mb30">Our Design & Development Services</h2>
  9. </div>
  10. </div>
  11. </div>
  12. <div class="row upset link-hover shape-num justify-content-center">
  13. {% for index , category in categories %}
  14. <div class="col-lg-3 col-sm-6 mt30 shape-loc wow fadeInUp" data-wow-delay="{{ 0.2 * index }}s">
  15. <a href="{{ path('category' , {
  16. slug: category.slug
  17. }) }}" style="overflow: visible;">
  18. <div class="s-block" data-tilt data-tilt-max="5" data-tilt-speed="1000">
  19. {% for block in category.content.blocks %}
  20. {% if block.type == "image" %}
  21. <div class="s-card-icon">
  22. <img src="{{ asset(block.data.file.url) }}" alt="{{ category.slug }}" class="img-fluid"/>
  23. </div>
  24. {% endif %}
  25. {% endfor %}
  26. <h4>{{ category.name }}</h4>
  27. {% for block in category.content.blocks %}
  28. {% if block.type == "paragraph" %}
  29. <p>{{ block.data.text|length > 40 ? block.data.text|slice(0, 40) ~ '...' : block.data.text }}</p>
  30. {% endif %}
  31. {% endfor %}
  32. </div>
  33. </a>
  34. </div>
  35. {% endfor %}
  36. </div>
  37. </div>
  38. </section>
  39. <!--End Service-->