~xdavidwu/xdavidwu.link

d9bef92be93733f46ef7fc9059272dbb16801609 — Mike Mylonakis 5 years ago 23e8f0b
Prevent current post from showing in the "You may also enjoy" (related (#1976)

posts) section
1 files changed, 3 insertions(+), 0 deletions(-)

M _layouts/single.html
M _layouts/single.html => _layouts/single.html +3 -0
@@ 84,6 84,9 @@ layout: default
      <h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
      <div class="grid__wrapper">
        {% for post in site.posts limit:4 %}
          {% if post.id == page.id %}
            {% continue %}
          {% endif %}
          {% include archive-single.html type="grid" %}
        {% endfor %}
      </div>