Skip to content

Commit

Permalink
Fix 404 on blog page
Browse files Browse the repository at this point in the history
Prepend base url to the post url
  • Loading branch information
gayanvirajith committed Aug 29, 2014
1 parent b131980 commit 3220e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blog.md
Expand Up @@ -12,6 +12,6 @@ title: Blog archive
<ul class="posts">
{% capture year %}{{currentyear}}{% endcapture %}
{% endif %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
<li><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
{% endfor %}
</div>

0 comments on commit 3220e93

Please sign in to comment.