{% extends "base.html" %} {% block title %}Tentang — {{ profile.full_name }}{% endblock %} {% block content %} {% include "partials/page_header.html" with eyebrow="Tentang Saya" heading=profile.full_name subheading=profile.headline %}

Cerita Singkat

{{ profile.about|default:profile.bio|linebreaks }}
{% if skill_groups %}

Keahlian

{% for group, items in skill_groups.items %}

{{ group }}

{% for s in items %}
{{ s.name }} {{ s.level }}%
{% endfor %}
{% endfor %}
{% endif %} {% if educations %}

Pendidikan

{% for e in educations %}

{{ e.school }}

{{ e.degree }}{% if e.field_of_study %} — {{ e.field_of_study }}{% endif %}

{{ e.period }}{% if e.grade %} · {{ e.grade }}{% endif %}

{% if e.description %}

{{ e.description }}

{% endif %}
{% endfor %}
{% endif %} {% if certificates %}

Sertifikat

Lihat semua →
{% for c in certificates %}

{{ c.name }}

{{ c.issuer }}

{{ c.issue_date|date:"M Y" }}

{% if c.credential_url %} Lihat kredensial → {% endif %}
{% endfor %}
{% endif %}
{% endblock %}