post.html 704 B

12345678910111213141516171819202122232425
  1. ---
  2. layout: default
  3. ---
  4. <article class="post">
  5. <h1 class="post-title">{{ page.title }}</h1>
  6. <time datetime="{{ page.date | date_to_xmlschema }}" class="post-date">{{ page.date | date_to_string }}</time>
  7. {{ content }}
  8. </article>
  9. {% if site.related_posts != empty %}
  10. <aside class="related">
  11. <h3>Related posts</h3>
  12. <ul class="related-posts">
  13. {% for post in site.related_posts limit:3 %}
  14. <li>
  15. <a href="{{ site.baseurl }}{{ post.url }}">
  16. {{ post.title }}
  17. <small><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time></small>
  18. </a>
  19. </li>
  20. {% endfor %}
  21. </ul>
  22. </aside>
  23. {% endif %}