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.

blog.html.twig 188B

12345678910111213
  1. {% extends "base.html.twig" %} {% block main %}
  2. <ul>
  3. {% for blog in content.getBlogsList %}
  4. <h1>{{ blog.title }}</h1>
  5. {{
  6. blog.content
  7. }}
  8. {% endfor %}
  9. </ul>
  10. {% endblock %}