I have a simple jekyll for loop but when jekyll compiles it it keeps saying that my endfor is invalid ?? what is going wrong?
{% for posts in site.posts %}
<li>
<a href="#">{{posts.title}}</a>
<p>{{posts.meta}}</p>
</li>
{% endfor %}