Hi, I would like to remove the dates in my filenames.
It looks like I’m forced to use collections (Is there a way to do it with posts?). How can I get jekyll to render a collection other than posts on the index page?
Is it possible to automatically set the slug from the folder that the article is in? If my article is in _articles/my-article-title/index.md, I would like the slug to be my-article-title.
the default code is looping over post, you would probably swap that code with his example.
That is either in the main index file or maybe a layout or include called by it, you should poke around and try to reverse engineer it and it should make some sense.
I figured out how to do it. I needed to create the file _layouts/home.html and copy the content from here. Then I needed to change “posts” to “articles” in line 15.