layout: default


<h1 class="post-title">{{ page.title }}</h1>
<span class="post-date">{{ page.date | date:"%B %e, %Y" }}</span>

{{ content }}

<div class=“related”>

<h2>Related Posts</h2>
<ul class="related-posts">
  {% for post in site.related_posts limit:3 %}
    <li>
      <h3>
        <a href="{{ post.url | relative_url }}">
          {{ post.title }}
          <small>{{ post.date | date_to_string }}</small>
        </a>
      </h3>
    </li>
  {% endfor %}
</ul>

</div>