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 202B

12345678910
  1. {% extends "base.html.twig" %} {% block main %}
  2. <ul>
  3. {% for blog in content.getBlogsList%}
  4. <li>
  5. <a href="/blog/{{ blog.slug }}">{{ blog.title }}</a>
  6. </li>
  7. {% endfor %}
  8. </ul>
  9. {% endblock %}