0
How create list of posts in jekyll on site post , with loop "for" ?
Jekyll
2 Answers
+ 1
RTFM question...
E.g.
<ul>
  {% for post in site.posts %}
    <li>
      <a href="{{ post.url }}">{{ post.title }}</a>
    </li>
  {% endfor %}
</ul>
0
But it doesn't work, and I don't now why



