I am new to Hugo and I am trying to set up a blog using the northendlab-light theme.
There is some data in a .yml file that gets rendered to a page.
When I run the local server using Hugo CLI, all works as expected. (see image below)
But, after I deploy to GitHub, pages the content of the .yml file is not rendered. https://kraulain.me/courses/
Everything else seems to work properly.
I have already checked to make sure I am using the right baseURL in the configs.
What could be the issue?
The full source code for the blog is open here GitHub - kraulain/kraulain-me
Thanks @jmooring
I added the courses.md when trying to solve the issue.
But the problem already existed before that.
I have done all the changes recommended but I am still facing the same issue.
Maybe you have been making changes to the theme (example: creating a courses layout similar to the tools layout) without updating the theme repository?
Thanks very much @jmooring
I was making changes to the theme without updating the themes repository.
And even after updating it, I had to update the git submodule to use the latest commit git submodule foreach git pull origin master
Everything works as desired now.