12345678910111213141516171819202122232425 |
- ---
- layout: default
- ---
- <article class="post">
- <h1 class="post-title">{{ page.title }}</h1>
- <time datetime="{{ page.date | date_to_xmlschema }}" class="post-date">{{ page.date | date_to_string }}</time>
- {{ content }}
- </article>
- {% if site.related_posts != empty %}
- <aside class="related">
- <h3>Related posts</h3>
- <ul class="related-posts">
- {% for post in site.related_posts limit:3 %}
- <li>
- <a href="{{ site.baseurl }}{{ post.url }}">
- {{ post.title }}
- <small><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time></small>
- </a>
- </li>
- {% endfor %}
- </ul>
- </aside>
- {% endif %}
|