scratching my head over this - help much appreciated.
I want to display a list of all my Jekyll posts, organised by category. I know Line 3 isn\'t correct but I can
fyi, if anyone wants to just list the posts in one category, this works (differs from above example as the category returns a list of posts...
Posts in category "basic" are:
{% for post in site.categories.basic %}
{% if post.url %}
- {{ post.title }}
{% endif %}
{% endfor %}