Hello, today I started my journey to learn jekyll, unfortunately I already found a difficulty that I could not overcome.
I created a new project and copied the files and folders from Minima to the main project folder. I was adding a variable in home.html like so:
—
layout: default
title: My Title
—
I tried to use it in the Home file (Not yet changed by me) like this:
<h1> {{page.title}} </ h1>
But he did not appear. What am I doing wrong?
Then I called:
<h1> {{page.layout}} </ h1>
to my surprise it worked, and wrote Home, I saw that it picked up from the Index.md file. But this file says I should not edit it.