{% extends "base.html" %}
{% load static %}
{% block title %}About{% endblock %}
{% block meta_description %}Learn about Radiuma — Visualized & Standardized Environment for Radiomics Analysis, developed at UBC and BC Cancer Research Institute.{% endblock %}
{% block content %}
{% for section in about_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 %}
{% for link in links %}
{% if link.url %}
{{ link.title }}
{% endif %}
{% endfor %}
{% endif %}
{% endwith %}
{% if section.subtitle %}
{{ section.subtitle }}
{% endif %}
{% 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 %}