services.html.twig 434 B

1234567891011121314151617
  1. <section class="section services" id="services">
  2. <div class="container">
  3. <div class="section-description">
  4. {{ page.content }}
  5. </div>
  6. {% set collection = page.collection() %}
  7. {% for child in collection %}
  8. {% include 'partials/service.html.twig' with {
  9. 'blog' : page,
  10. 'page' : child,
  11. 'truncate' : true
  12. } %}
  13. {% endfor %}
  14. </div>
  15. </section>