carpentries-incubator / jekyll-pages-novice

Building Websites with Jekyll & GitHub Pages.
https://carpentries-incubator.github.io/jekyll-pages-novice/
Other
16 stars 21 forks source link

Fix collection config #254

Closed tobyhodges closed 3 years ago

tobyhodges commented 3 years ago

I ran into trouble while creating screenshots for the Loops & Collections episode, and found that I needed to write the YAML config for the blogposts collections as:

collections:
  blogposts:
    output: true

instead of

collections:
  -
    blogposts:
      -
        output: true

as I had written in the lesson. This needs to be fixed and the explanatory text that goes with it needs to be updated to be accurate.