Structure of my project:
/_config.yml
./_layouts
./_posts
./_posts/2011-07-29-my-first-jekyll-post.markdown
./_notices/2011-07-29-my-first-notice.markdown
./_notices/2011-07-30-my-second-notice.markdown
./_site
./index.html
With post it works:
{% for post in site.posts %}
... listing all posts ...
{% endfor %}
With news not working:
{% for notice in site.notices %}
... listing all notices ...
{% endfor %}
Notices does not work. How can I achieve a listing of items similar to the post listing?