Created
December 8, 2017 17:04
-
-
Save carlcs/acf7e14ee3393ec135a40a28493ac82a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends '_layouts/standard' %} | |
{% set cacheContentBlock = true %} | |
{% block content %} | |
{# ...content worth caching #} | |
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends '_layouts/base' %} | |
{% block layout %} | |
{% block navigation %} | |
{% cache globally using key 'site-navigation' %} | |
{% include '_includes/site/navigation' %} | |
{% endcache %} | |
{% endblock %} | |
<main> | |
{% set cacheContentBlock = cacheContentBlock ?? false %} | |
{% set cacheKey = cacheContentBlock is same as(true) ? 'content-' ~ entry.id : cacheContentBlock %} | |
{% cache globally using key cacheKey if cacheContentBlock %} | |
{% block content %} | |
{% endblock %} | |
{% endcache %} | |
</main> | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment