Browse Source

Merge pull request #87 from maurogestoso/fix-link-related-posts

Fixed permalinks on related posts
Mark Otto 10 years ago
parent
commit
0bb5f12fbc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      _layouts/post.html

+ 1 - 1
_layouts/post.html

@@ -14,7 +14,7 @@ layout: default
     {% for post in site.related_posts limit:3 %}
       <li>
         <h3>
-          <a href="{{ site.baseurl }}/{{ post.url }}">
+          <a href="{{ site.baseurl }}{{ post.url }}">
             {{ post.title }}
             <small><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time></small>
           </a>