Hide similar content in preview

This commit is contained in:
Jake Howard 2023-06-03 15:27:17 +01:00
parent e8cd4f6628
commit e0f3ab3311
Signed by: jake
GPG key ID: 57AFB45680EDD477

View file

@ -5,6 +5,7 @@
{% block post_content %} {% block post_content %}
{{ block.super }} {{ block.super }}
{% if not request.is_preview %}
{% cache FRAGMENT_CACHE_TTL|jitter:FRAGMENT_CACHE_TTL_JITTER "similar-content" page.id request.is_preview %} {% cache FRAGMENT_CACHE_TTL|jitter:FRAGMENT_CACHE_TTL_JITTER "similar-content" page.id request.is_preview %}
<section class="container similar-content" id="similar-content"> <section class="container similar-content" id="similar-content">
<h2 class="subtitle is-size-2">Similar content</h2> <h2 class="subtitle is-size-2">Similar content</h2>
@ -16,4 +17,5 @@
{% endfor %} {% endfor %}
</section> </section>
{% endcache %} {% endcache %}
{% endif %}
{% endblock %} {% endblock %}