You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html.twig 466B

1234567891011121314151617
  1. {% extends 'base.html.twig' %}
  2. {% block body %}
  3. <h1>SovSkeleton</h1>
  4. <ul>
  5. {% for page in pages %}
  6. <li>
  7. <h2>{{ page.title }}</h2>
  8. {% if page.gallery is defined %}
  9. {% for image in page.gallery %}
  10. <img src="{{ lc_liip(image.path, 'thumbnail') }}" alt="{{ image.legend }}" />
  11. {% endfor %}
  12. {% endif %}
  13. </li>
  14. {% endfor %}
  15. </ul>
  16. {% endblock body %}