ec63afc10d770bfaf47daee2c3d2231ce39c8c05
[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 {% if site.related_posts != empty %}
12 <aside class="related">
13   <h2>Related Posts</h2>
14   <ul class="related-posts">
15     {% for post in site.related_posts limit:3 %}
16       <li>
17         <h3>
18           <a href="{{ site.baseurl }}{{ post.url }}">
19             {{ post.title }}
20             <small><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time></small>
21           </a>
22         </h3>
23       </li>
24     {% endfor %}
25   </ul>
26 </aside>
27 {% endif %}