{% extends "base.html" %} {% set active_page = "showcase" %} {% block title %}Showcase{% endblock %} {% block content %}

Portfolio Showcase

{{ projects | length }} projects
{{ stats.total }}
Total
{{ stats.published }}
Published
{{ stats.built }}
Built
{{ stats.building }}
Building
All {% for s in statuses %} {{ s | title }} {% endfor %}
{% for p in projects %}

{{ p.title }}

{{ p.skill }}
{{ p.status.value | title }}
{% if p.screenshot_url %} {{ p.title }} {% else %}
No preview
{% endif %}
{% if p.description %}

{{ p.description }}

{% if p.description|length > 150 %} {% endif %}
{% endif %} {% if p.tech_stack %}
{% for tech in p.tech_stack[:6] %} {{ tech }} {% endfor %}
{% endif %}
{% if p.github_url %} GitHub → {% endif %} {% if p.live_url %} Live Demo → {% endif %} {% if p.status.value == 'building' or p.build_log %} {% endif %} {{ p.created_at | timeago }}
{% if p.instruction and p.instruction_status == 'pending' %}
Pending Instruction:
{{ p.instruction[:200] }}
{% endif %}
Send Instruction
{% else %}
No portfolio projects yet — the portfolio agent is building them
{% endfor %}
{% endblock %}