You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
530 B
Plaintext
26 lines
530 B
Plaintext
---
|
|
layout: default
|
|
---
|
|
|
|
<div class="post">
|
|
<h1 class="post-title">{{ page.title }}</h1>
|
|
<span class="post-date">{{ page.date | date_to_string }}</span>
|
|
{{ content }}
|
|
</div>
|
|
|
|
<div class="related">
|
|
<h2>Related Posts</h2>
|
|
<ul class="related-posts">
|
|
{% for post in site.tags[page.tags] limit:3 %}
|
|
<li>
|
|
<h3>
|
|
<a href="{{ post.url }}">
|
|
{{ post.title }}
|
|
<small>{{ post.date | date_to_string }}</small>
|
|
</a>
|
|
</h3>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|