Related Posts
<!--
Related posts are dynamically pulled from site.related_posts and augmented with a Jekyll plugin https://github.com/toshimaru/jekyll-tagging-related_posts to make matches based on post.tags. The following tile logic resides in an include file and is ready to be used in layouts or within post/page content.
/_includes/related.html
-->
<h3 class="tile__header">You May Also Enjoy</h3>
<div class="tiles">
{% for post in site.related_posts limit:3 %}
<article class="tile__item" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="text" content="{{ post.excerpt | strip_html }}">
<a href="{{ post.url }}">
<img src="{% if post.image.teaser %}{{ post.image.teaser }}{% else %}{{ site.teaser }}{% endif %}" itemprop="image" alt="{{ post.title }}">
<h3 class="tile__title" itemprop="headline">{{ post.title | markdownify | remove: '<p>' | remove: '</p>' }}</h3>
</a>
{% if post.categories %}
{% assign category_slug = post.categories | first %}
{% assign category = site.data.slugs[category_slug] %}
<a href="/{{ post.categories | first }}/" class="tile__category">{{ category.name }}</a>
{% endif %}
</article>
{% endfor %}
</div>