{% for slide in slides %}
{% for shape in slide.shapes %} {% if shape.type == 'text' %}
{% if shape.paragraphs %} {% if shape.is_title %}
{{ shape.paragraphs[0].text }}
{% else %}
{% for para in shape.paragraphs %}
{% if para.level == 0 %} {% elif para.level == 1 %} {% elif para.level >= 2 %} {% endif %} {{ para.text }}
{% endfor %}
{% endif %} {% else %}
{{ shape.text }}
{% endif %}
{% elif shape.type == 'autoshape' %}
{% if 'ARROW' in shape.autoshape_type|string %} {% if 'RIGHT' in shape.autoshape_type|string %} {% elif 'LEFT' in shape.autoshape_type|string %} {% elif 'UP' in shape.autoshape_type|string %} {% elif 'DOWN' in shape.autoshape_type|string %} {% else %} {% endif %} {% else %}
{% endif %}
{% elif shape.type == 'picture' and shape.image_data %}
Image
{% endif %} {% endfor %}
{% if include_notes and slide.notes %}

Speaker Notes:

{{ slide.notes }}

{% endif %}
{% endfor %}
1 / {{ slides|length }}