{% extends "base.html" %} {% block title %}Cari โ€” {{ profile.full_name }}{% endblock %} {% block content %} {% include "partials/page_header.html" with eyebrow="Pencarian" heading="Cari Apa Saja" subheading="Telusuri tulisan dan proyek dalam satu tempat." %}
{% if query %}

{{ total }} hasil untuk "{{ query }}"

{% if posts %}

Tulisan

{% for post in posts %}

{{ post.title }}

{{ post.excerpt }}

{{ post.published_at|date:"d M Y" }} ยท {{ post.reading_time }} mnt baca

{% endfor %}
{% endif %} {% if projects %}

Proyek

{% for p in projects %}

{{ p.title }}

{{ p.short_description }}

{% endfor %}
{% endif %} {% if not posts and not projects %}

๐Ÿ”

Tidak ada hasil

Coba kata kunci lain yang lebih umum.

{% endif %} {% endif %}
{% endblock %}