Hi,
I have a strange behavior in my modular loop;
{% for module in page.collection() %}
{% if (module.header.unpublished is not defined or (module.header.unpublished == false)) %}
{{ module.content }}
{% endif %}
{% endfor %}
Somehow in my modular template, the content var is null?
only the var raw_content is available?
Best