{% set cid = c.id if c.id else ("live-" ~ c.live_source) %} {% set content_id = "live-content-" ~ (c.live_source if c.live_source else cid) %}
{% if c.title %}

{{ c.title }}

{% endif %}
{% if content_html is not none %} {{ content_html }} {% elif live_data is mapping %} {% for k, v in live_data.items() %} {% if k == "line" %}
{{ v }}
{% elif v is list %} {% for item in v %}
{{ item }}
{% endfor %} {% else %}
{{ k }}{{ v }}
{% endif %} {% endfor %} {% else %} {{ c.placeholder | safe }} {% endif %}