{% extends "base.html" %} {% block title %}Proyek — {{ profile.full_name }}{% endblock %} {% block content %} {% include "partials/page_header.html" with eyebrow="Portofolio" heading="Proyek Saya" subheading="Kumpulan karya yang pernah saya bangun — dari eksperimen kecil sampai produk yang dipakai orang." %}
{% if techs %}
Semua {% for t in techs %} {{ t.name }} {{ t.n }} {% endfor %}
{% endif %} {% if projects %}
{% for p in projects %}
{% if p.thumbnail %} {{ p.title }} {% else %}
{{ p.title|slice:":2"|upper }}
{% endif %}
{% if p.is_featured %} Unggulan {% endif %} {% if p.status == 'ongoing' %} Berjalan {% endif %}

{{ p.title }}

{% if p.role %}

{{ p.role }}

{% endif %}

{{ p.short_description }}

{% if p.tech_stack.all %}
{% for t in p.tech_stack.all|slice:":4" %}{{ t.name }}{% endfor %} {% if p.tech_stack.all|length > 4 %}+{{ p.tech_stack.all|length|add:"-4" }}{% endif %}
{% endif %}
{% endfor %}
{% include "partials/pagination.html" %} {% else %}

📦

Belum ada proyek

Proyek yang kamu tambahkan lewat panel akan muncul di sini.

{% endif %}
{% endblock %}