I write about stuff & things
- Import posts from current blog
- Add disqus comments
- Make the
postcommand able to actually commit (with message) and then push the changes to github.
Links were broken initially with the following code:
<a href="{{ site.baseurl }}{{ post.url }}">
Replacing that line in index.html with the following fixed the issue:
<a href="{{ post.url }}">
Still, it's a strange issue since the baseurl was set to / the whole time. Just something to note for future reference.