Skip to content
Snippets Groups Projects
stream_block.html 209 B
Newer Older
  • Learn to ignore specific revisions
  • {% load wagtailcore_tags %}
    
    Todd Dembrey's avatar
    Todd Dembrey committed
    {% for block in value %}
        {% if block.block_type == 'heading' %}
            <h2>{{ block.value }}</h2>
        {% else %}
    
            {% include_block block %}
    
    Todd Dembrey's avatar
    Todd Dembrey committed
        {% endif %}
    {% endfor %}