I have the following question how do I create a news feed? Do I have to add something inside the config.yml file?
Inside the _post folder I have the file 2015-03-03-welcome-jekyll.markdown
---
layout: post
title: "Welcome to Jekyll!"
date: 2015-03-03 14:47:43
categories: "jekyll update"
---
If I do so in inha view
{% for post in site.posts limit:20 %}
<li>
<span>{{ post.date | date_to_string }}</span> »
<a href="{{ BASE_PATH }}{{ post.url }}">
{{ post.title }}
</a>
</li>
{% endfor %}
It works fine, but if I rename the _posts folder to _notices and change in the loop from site.posts to site.notices and run it it does not work. My question is how can I create news, testimonials?