Fixed link on related posts
[blog] / _layouts / post.html
1 ---
2 layout: default
3 ---
4
5 <article class="post">
6   <h1 class="post-title">{{ page.title }}</h1>
7   <time datetime="{{ page.date | date_to_xmlschema }}" class="post-date">{{ page.date | date_to_string }}</time>
8   {{ content }}
9 </article>
10
11 <aside class="related">
12   <h2>Related Posts</h2>
13   <ul class="related-posts">
14     {% for post in site.related_posts limit:3 %}
15       <li>
16         <h3>
17           <a href="{{ site.baseurl }}{{ post.url }}">
18             {{ post.title }}
19             <small><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time></small>
20           </a>
21         </h3>
22       </li>
23     {% endfor %}
24   </ul>
25 </aside>