dtsn
dtsn

Reputation: 1107

Jekyll cannot find include files from within a collection

Sorry if this has been answered before, I've tried searching and haven't found anything.

I am using Jekyll 3.8.5 (the version supported by github pages). I have an include file youtube.html which is located inside my jekyll _includes directory. I am trying to reference the file from a file within a collection and it is just erroring - stating that it could not find the file within [collection]/_includes which is clearly wrong and should just be _includes.

Any idea how to fix the path so it can correctly find the include file?

You can see my implementation here: https://github.com/dtsn/jungleskipper/blob/feature/members/_members/jonas-brisbane.md

I did try this in jekyll 4 without a problem.

Upvotes: 1

Views: 915

Answers (2)

dtsn
dtsn

Reputation: 1107

I was running on MacOS beta, I switched back to the non-beta channel, reinstalled Ruby and Jekyll and I'm not getting the error any more. Wierd one...

Upvotes: 0

Stanislas Girard
Stanislas Girard

Reputation: 314

I think the issue comes from the fact that you set post as a collection in your _config.yml

Remove

posts:
    title: Posts
    output: true
    layout: post

Upvotes: 1

Related Questions