I'm an absolute beginner working with Jekyll sites and have currently the following issue:
I want to embed a calendar into my index.md
(start page). The index.md
only contains the yaml frontmatter so far. The calendar consists of a html-file referencing various .js
(script src) and .css
(link href) and all the files are located in a folder "calendar"
.
I tried to embed the calendar with {%include calendar.html}
and placed the file in the _includes
folder. I also tried the include_reference
but I haven't been successful with both options. The .js
and .css
files (referenced by the calendar.html) cannot be found. The path is wrong. Can anyone help me out?
Again: index.md
with frontmatter is my starting page. The calendar.html
is included in the _includes
folder and the calendar.html
references certain .js
and .css
which are located in a folder "calendar"
(just below the main folder).
e.g. is referenced and full calendar.min.js is located in the calendar folder.