bbb/_layouts/post.html
2021-11-28 14:11:13 +05:30

31 lines
729 B
HTML

---
layout: default
---
<div class="post">
<h1 class="post-title">{{ page.title }}</h1>
<span class="post-date">{{ page.date | date_to_string }}</span>
<span class="post-meta-separator">.</span>
<span class="post-minutes">{% include minutes_to_read.html %}</span>
<br/>
{{ content }}
</div>
<!-- {% if site.related_posts.size >= 1 %}
<div class="related">
<h2>Related posts</h2>
<ul class="related-posts">
{% for post in site.related_posts limit:3 %}
<li>
<h3>
<a href="{{ site.baseurl }}{{ post.url }}">
{{ post.title }}
<small>{{ post.date | date_to_string }}</small>
</a>
</h3>
</li>
{% endfor %}
</ul>
</div>
{% endif %} -->