私のプロジェクトの構造:
/_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
投稿すると動作します:
{% for post in site.posts %}
... listing all posts ...
{% endfor %}
ニュースが機能しない場合:
{% for notice in site.notices %}
... listing all notices ...
{% endfor %}
通知が機能しません。投稿リストと同様のアイテムのリストを作成するにはどうすればよいですか?