{% load static %} {% for section in sections %} {% if section.section_type == "hero" %}
{% if section.badge %}
{{ section.badge }}
{% endif %} {% if section.title %}

{{ section.title }}

{% endif %} {% if section.subtitle %}

{{ section.subtitle }}

{% endif %} {% if section.content %}
{{ section.rendered_content }}
{% endif %}
{% elif section.section_type == "intro" %}
{% if section.title %}

{{ section.title }}

{% endif %} {% if section.content %}
{{ section.rendered_content }}
{% endif %}
{% elif section.section_type == "grid" %}
{% if section.badge or section.title %}
{% if section.badge %}
{{ section.badge }}
{% endif %} {% if section.title %}

{{ section.title }}

{% endif %}
{% endif %} {% if section.content %}
{{ section.rendered_content }}
{% endif %} {% with items=section.items.all %} {% if items %}
{% for item in items %}
{% if item.badge %}
{{ item.badge }}
{% endif %} {% if item.title %}

{{ item.title }}

{% endif %} {% if item.content %}

{{ item.content }}

{% endif %}
{% endfor %}
{% endif %} {% endwith %}
{% elif section.section_type == "history" %}
{% if section.badge %}
{{ section.badge }}
{% endif %} {% if section.title %}

{{ section.title }}

{% endif %} {% if section.content %}
{{ section.rendered_content }}
{% endif %} {% with links=section.items.all %} {% if links %} {% endif %} {% endwith %}
{% elif section.section_type == "custom" %}
{% if section.badge or section.title %}
{% if section.badge %}
{{ section.badge }}
{% endif %} {% if section.title %}

{{ section.title }}

{% endif %}
{% endif %} {% if section.content %}
{{ section.rendered_content }}
{% endif %} {% with items=section.items.all %} {% if items %}
{% for item in items %}
{% if item.badge %}
{{ item.badge }}
{% endif %} {% if item.title %}

{{ item.title }}

{% endif %} {% if item.content %}

{{ item.content }}

{% endif %} {% if item.url %}{{ item.title }}{% endif %}
{% endfor %}
{% endif %} {% endwith %}
{% elif section.section_type == "features" %}
{% if section.badge %}
{{ section.badge }}
{% endif %} {% if section.title %}

{{ section.title }}

{% endif %} {% if section.description %}

{{ section.description }}

{% endif %}
{% for item in section.items.all %}
{% if item.icon %}{% endif %}

{{ item.title }}

{{ item.content }}

{% endfor %}
{% elif section.section_type == "screenshots" %}
{% if section.badge %}
{{ section.badge }}
{% endif %} {% if section.title %}

{{ section.title }}

{% endif %} {% if section.description %}

{{ section.description }}

{% endif %}
{% for item in section.items.all %} {% if item.image %}
{{ item.image_alt|default:item.title }}
{% endif %} {% empty %}
Application screenshot
Application screenshot
Application screenshot
Application screenshot
{% endfor %}
{% elif section.section_type == "products" %} {% if sub_products %}
{% if section.badge %}
{{ section.badge }}
{% endif %} {% if section.title %}

{{ section.title }}

{% endif %} {% if section.description %}

{{ section.description }}

{% endif %}
{% endif %} {% elif section.section_type == "problems" %}
{% if section.badge %}
{{ section.badge }}
{% endif %} {% if section.title %}

{{ section.title }}

{% endif %} {% if section.description %}

{{ section.description }}

{% endif %}
{% for item in section.items.all %}
{% if item.icon %}{% endif %}

{{ item.title }}

{{ item.content }}

{% endfor %}
{% elif section.section_type == "supporters" %}
{% if section.badge %}
{{ section.badge }}
{% endif %} {% if section.title %}

{{ section.title }}

{% endif %} {% if section.description %}

{{ section.description }}

{% endif %}
{% for item in section.items.all %}
{% if item.image %} {% endif %}

{{ item.title }}

{% if item.content %}

{{ item.content }}

{% endif %}
{% endfor %}
{% elif section.section_type == "about_strip" %}
{% if section.badge %}
{{ section.badge }}
{% endif %} {% if section.title %}

{{ section.title }}

{% endif %} {% if section.description %}

{{ section.description }}

{% elif section.content %}

{{ section.rendered_content }}

{% endif %} {% if section.link_text and section.link_url %} {{ section.link_text }} {% endif %}
{% elif section.section_type == "faq" %}
{% if section.badge or section.title %}
{% if section.badge %}
{{ section.badge }}
{% endif %} {% if section.title %}

{{ section.title }}

{% endif %}
{% endif %} {% with items=section.items.all %} {% if items %}
{% for item in items %}
{% endfor %}
{% endif %} {% endwith %}
{% endif %} {% empty %}

No content configured yet. Add sections in the admin panel.

{% endfor %}