1
I’m having the following doubt as I create a news for? 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 a little 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 switch to the site.notices loop and run it doesn’t work. My doubt is how I can create news, testimonials?