I'm trying to build a personal website using Jekyll. I chose Jekyll by following the extensive tutorial from Learn Enough CSS & Layout to be Dangerous by Michael Hartl.
I'm trying to show a selection of blog posts on my home page.
My _posts folder is in the root directory, the filenames are in the correct DD-MM-YYYY-title.md format and the dates occur in the past.
I outputted site.posts using
{{ site.posts.size }}
{{ site.posts | inspect }}
They output "0" and "[]", so it looks like the array is empty.
The repo is available here: https://github.com/jpallard6120/jpallard6120.github.io
Help is much appreciated!