{% extends "base.html" %} {% load static %} {% block title %}Home{% endblock %} {% block meta_description %}Radiuma — A Powerful Workflow Generator for Standardized Radiomics Analysis and Medical Image Visualization.{% endblock %} {% block content %}
{% if hero %} {% if hero.badge %}
{{ hero.badge }}
{% endif %} {% if hero.title or hero.title_highlight %}

{% if hero.title %}{{ hero.title }}{% endif %} {% if hero.title and hero.title_highlight %}
{% endif %} {% if hero.title_highlight %}{{ hero.title_highlight }}{% endif %}

{% endif %} {% if hero.subtitle %}

{{ hero.subtitle }}

{% endif %} {% if hero.description %}

{{ hero.description }}

{% endif %} {% if hero.primary_cta_text or hero.secondary_cta_text %}
{% if hero.primary_cta_text %}{{ hero.primary_cta_text }}{% endif %} {% if hero.secondary_cta_text %}{{ hero.secondary_cta_text }}{% endif %}
{% endif %} {% endif %}
{% if hero and hero.image or not hero %}
{% if hero and hero.image %} {{ hero.image_alt }} {% elif not hero %} Radiuma application — main workflow view {% endif %}
{% endif %}
{% for section in homepage_sections %} {% if section.section_type == "features" %}
{% if section.badge %}
{{ section.badge }}
{% endif %}

{{ section.title }}

{% 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 %}

{{ section.title }}

{% if section.description %}

{{ section.description }}

{% endif %}
Radiuma full workflow interface
Radiuma panel view
Radiuma segmentation view
Radiuma radiomics results
{% elif section.section_type == "products" %} {% if sub_products %}
{% if section.badge %}
{{ section.badge }}
{% endif %}

{{ section.title }}

{% if section.description %}

{{ section.description }}

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

{{ section.title }}

{% 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 %}

{{ section.title }}

{% 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 %}

{{ section.title }}

{% if section.description %}

{{ section.description }}

{% endif %} {% if section.link_text and section.link_url %} {{ section.link_text }} {% endif %}
{% endif %} {% endfor %} {% endblock %}