{% extends "base.html" %} {% block title %}Kontak — {{ profile.full_name }}{% endblock %} {% block content %} {% include "partials/page_header.html" with eyebrow="Kontak" heading="Mari Berkenalan" subheading="Punya ide, tawaran kerja, atau sekadar ingin menyapa? Kirim pesan lewat form di bawah." %}
{% if profile.email %}

Email

{{ profile.email }}

{% endif %} {% if profile.phone %}

Telepon / WhatsApp

{{ profile.phone }}

{% if profile.whatsapp_url %} Chat via WhatsApp → {% endif %}
{% endif %} {% if profile.location %}

Lokasi

{{ profile.location }}

{% endif %} {% if social_links %}

Social Media

{% for link in social_links %} {{ link.display_label }} {% endfor %}
{% endif %}

Kirim Pesan

Biasanya saya balas dalam 1×24 jam.

{% csrf_token %} {{ form.nickname }}
{{ form.name }} {{ form.name.errors }}
{{ form.email }} {{ form.email.errors }}
{{ form.subject }} {{ form.subject.errors }}
{{ form.message }} {{ form.message.errors }}
{% if form.non_field_errors %}

{{ form.non_field_errors.0 }}

{% endif %}
{% endblock %}