Skip to content

Instantly share code, notes, and snippets.

@laras126
Created March 10, 2015 23:28
Show Gist options
  • Save laras126/f4b1b1554e753d33bf09 to your computer and use it in GitHub Desktop.
Save laras126/f4b1b1554e753d33bf09 to your computer and use it in GitHub Desktop.
{% for content in post.get_field('content') %}
{% if content.acf_fc_layout == 'section' %}
{% for blck in content.blocks %}
{% if blck.acf_fc_layout == 'block_text' %}
{{blck.text}}
{% elseif blck.acf_fc_layout == 'block_list' %}
{% include 'blocks/block-list.twig' %}
{% endif %}
{% endfor %}
{% endif %}
{% for %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment