mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-02 20:40:24 +00:00
21 lines
444 B
HTML
21 lines
444 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<div class="post">
|
|
<h1>{{ page.title }}</h1>
|
|
<span class="post-date">{{ page.date | date_to_string }}</span>
|
|
{{ content }}
|
|
</div>
|
|
|
|
<div class="related">
|
|
<h2>Related Posts</h2>
|
|
<ul class="posts">
|
|
{% for post in site.related_posts limit:3 %}
|
|
<h3><a href="{{ post.url }}">
|
|
{{ post.title }}
|
|
<small>{{ post.date | date_to_string }}</small>
|
|
</a></h3>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|