I am very new to this, and I want to build a very simple personal website. I used the Github pages and jekyll. I have two markdown pages that I need to convert to html through jekyll. My folder structure is:
/docs
--index.md
--resources.md
--_config.yml
For some reason, initially only index.md is converted to html. After reading some posts, I added the title below, but now it shows 404.
---
title: Title
---
My link from index to resources is simply below:
<a href= "resources.md">Resources</a>
What else should I do/try to make it work? Thanks in advance!
bundle exec jekyll build
inside thedocs
directory, I don't see any reason this wouldn't work. Are you getting errors in your terminal? Can you add your project to a GitHub repo? If not, perhaps you could add the contents of your_config.yml
to the question? – Brad West