1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-22 09:56:51 +01:00

keep it simple and just return default related posts

This commit is contained in:
Matthias Kretschmann 2014-07-05 13:58:53 +02:00
parent 3128815f1a
commit 32aec8c704

View File

@ -5,22 +5,13 @@
<div class="row"> <div class="row">
{% for post in site.related_posts %} {% for post in site.related_posts limit:6 %}
{% assign match = false %} <article class="related-post col2">
{% for category in post.categories %} <a class="post-title-link" href="{{ post.url }}">
{% if page.categories contains category %} <h1 class="post-title">{{ post.title }}</h1>
{% assign match = true %} </a>
{% endif %} </article>
{% endfor %}
{% if match %}
<article class="related-post col2">
<a class="post-title-link" href="{{ post.url }}">
<h1 class="post-title">{{ post.title }}</h1>
</a>
</article>
{% endif %}
{% endfor %} {% endfor %}