Step 1: Create the collection’s directory

Under your project root, create a folder named “_connecttech2018” and add an index file

> mkdir _connecttech2018
> touch index.md
Quiz:the prefix underscore is important, why?

Indicates to Jekyll this is a file it needs to process.

Working Directly On Github?

Github will not let you create an empty directory, however if you add the directory to the filename, it will be created.

Step 2: Tell Jekyll about your Collection

collections:
  connecttech2018:
    output: true
Working with Jekyll locally?

Restart Jekyll Server. _config.yml is the one file Jekyll doesn't watch for changes

Step 3: Add Some Content

---
---
Learning To Rock Jekyll at Connect Tech!

Save and Commit your changes

Step 4: Test your collection.

Explore! How does Jekyll handle…

The layout for your index & item page?

There is none! Why not?

The title for the index and item page?

Uses the filename.

Where are files output?

_site/
  connecttech2018.html
  connecttech2018/
    jekyll-4-fun.html