Closed leyhline closed 6 years ago
Thanks for the PR, I just merged it. Also love what you did with the _includes/social-icons.html
file.
Glad you liked it. I'm quite new to static site generators and especially Jekyll. Thanks for your great theme!
When clicking on the feed symbol in the page's header or footer while reading a post one gets redirected to the 404 page.
That's because the feed is located at: https://lenpaul.github.io/Lagrange/feed.xml
But while reading a blog post this becomes: https://lenpaul.github.io/Lagrange/journal/feed.xml which obviously doesn't exist.
I fixed this by changing
settings.yml
from- {icon: 'rss-square', link: 'feed.xml'}
to- {icon: 'rss-square', link: '/feed.xml'}
This only works because I run Lagrange directly under the root URL but for the demo page this fix won't work because is will link to https://lenpaul.github.io/feed.xml which also doesn't exist.