You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
410 B
Django/Jinja
10 lines
410 B
Django/Jinja
{%- macro cellslidedata(cell) -%}
|
|
{% if cell.metadata.slideshow | length > 0 -%}
|
|
{% if cell.metadata.slideshow.data | length > 0 -%}
|
|
{% for key in (cell.metadata.slideshow.data) -%}
|
|
{{- (' data_' ~ key)|replace("_", "-") -}}="{{- cell.metadata.slideshow.data[key]|escape_html -}}"
|
|
{%- endfor -%}
|
|
{%- endif %}
|
|
{%- endif %}
|
|
{%- endmacro %}
|