Using Content Type to categorise list of posts

So, let me see if I understand. You want to put all your articles in one folder. And then have a /quotes page where you can list all your posts that are labeled as quotes?

If that’s so, this is how you do it:

  1. Declare a category taxonomy in your config.toml. More info here
[taxonomies]
  category = "categories"
  1. Create posts in your /posts folder and categorize and set the taxonomy:
title: Post #1
categories:
  - quotes
  1. Create your terms.html template. More info here. There you will list all your quotes. You don’t need to create the page, just the template.

You can find almost everything you need in the documentation for taxonomies and taxonomy templates. And I created a tutorial that may be helpful for you: Handling taxonomies like a boss - update