My list
has the following code:
<h1>Posts</h1>
{% for posts in post %}
<article>
<h2>
{% post.titulo %}
</h2>
<div class="content">
{% post.conteudo %}
</div>
</article>
{% endfor %}
But when I run, I get the following error message:
Unexpected tag name "post" (expecting closing tag for the tag for near line 3) in / home / jose / Downloads / projects / Symfony / src / LearnSF / Bundle / BlogBundle / Resources / list.html.twig at line 5
How to fix?