Whilst using Github Pages I can't get Jekyll to render a contact page. I am using the following template: https://github.com/antonostrovsky/tale
If I clone the template into a local repo and run bundle exec jekyll serve
I get a page with a Contact link that I can successfully follow. The generated _site folder contains a subfolder 'contact' with index.html within it.
I then create an empty repository (https://github.com/antonostrovsky/test_site) at Github and specify this template in _config.yml:
remote_theme: antonostrovsky/tale
The template is successfully rendered, I can see the template on the index page (https://antonostrovsky.github.io/test_site/), and the Contact link leads to nowhere, resulting in "Not Found" error.
- Can anyone please help me understand how I can troubleshoot this? Does Jekyll have any debug output that could be placed on a github page?
- Does anyone know what could be going wrong?
Thank you in advance
Gemfile
according to github.com/antonostrovsky/tale#github-pages-method - midzerGemfile
) dependencies viabundle
. I am not sure whether you should point to the original theme (remote_theme: chesterhow/tale
) incase you have not modified it. - midzer