{% extends "base.html" %} {% block title %}{{ page_title }} — Software of You{% endblock %} {% block content %}

{{ page_title }}

{% if page_subtitle %}

{{ page_subtitle }}

{% endif %}
{% if header_stats %}
{% for stat in header_stats %} {{ stat.label }}: {{ stat.value }} {% endfor %}
{% endif %}
{% for section in sections %}
{% if section.title %}
{% if section.icon %}{% endif %}

{{ section.title }}

{% if section.badge %} {{ section.badge }} {% endif %}
{% endif %} {% if section.type == 'table' and section.rows %} {% for col in section.columns %} {% endfor %} {% for row in section.rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ col }}
{{ cell }}
{% elif section.type == 'list' and section.items %}
{% for item in section.items %}
{% if item.avatar %}
{{ item.avatar }}
{% endif %}

{{ item.title }}

{% if item.subtitle %}

{{ item.subtitle }}

{% endif %}
{% if item.meta %}{{ item.meta }}{% endif %}
{% endfor %}
{% elif section.type == 'timeline' and section.entries %}
{% for entry in section.entries %}

{{ entry.content }}

{{ entry.time }}

{% endfor %}
{% elif section.type == 'stats' and section.stats %}
{% for stat in section.stats %}

{{ stat.value }}

{{ stat.label }}

{% endfor %}
{% elif section.type == 'html' %} {{ section.html | safe }} {% elif section.type == 'empty' %} {% with icon=section.empty_icon | default('inbox'), message=section.empty_message | default('No data'), hint=section.empty_hint | default('') %}{% include "components/empty_state.html" %}{% endwith %} {% endif %}
{% endfor %} {% endblock %}