1234567891011121314151617 |
- <section class="section services" id="services">
- <div class="container">
- <div class="section-description">
- {{ page.content }}
- </div>
- {% set collection = page.collection() %}
- {% for child in collection %}
- {% include 'partials/service.html.twig' with {
- 'blog' : page,
- 'page' : child,
- 'truncate' : true
- } %}
- {% endfor %}
- </div>
- </section>
|