post.html 714 B

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