Hide similar content in preview
This commit is contained in:
parent
e8cd4f6628
commit
e0f3ab3311
1 changed files with 12 additions and 10 deletions
|
@ -5,15 +5,17 @@
|
||||||
{% block post_content %}
|
{% block post_content %}
|
||||||
{{ block.super }}
|
{{ block.super }}
|
||||||
|
|
||||||
{% cache FRAGMENT_CACHE_TTL|jitter:FRAGMENT_CACHE_TTL_JITTER "similar-content" page.id request.is_preview %}
|
{% if not request.is_preview %}
|
||||||
<section class="container similar-content" id="similar-content">
|
{% cache FRAGMENT_CACHE_TTL|jitter:FRAGMENT_CACHE_TTL_JITTER "similar-content" page.id request.is_preview %}
|
||||||
<h2 class="subtitle is-size-2">Similar content</h2>
|
<section class="container similar-content" id="similar-content">
|
||||||
|
<h2 class="subtitle is-size-2">Similar content</h2>
|
||||||
|
|
||||||
{% for page in page.get_similar_posts %}
|
{% for page in page.get_similar_posts %}
|
||||||
{% block listing_item %}
|
{% block listing_item %}
|
||||||
{% include "common/listing-item.html" %}
|
{% include "common/listing-item.html" %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</section>
|
</section>
|
||||||
{% endcache %}
|
{% endcache %}
|
||||||
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in a new issue