{% extends "base.html" %} {% block title %}Blog — {{ profile.full_name }}{% endblock %} {% block content %} {% include "partials/page_header.html" with eyebrow="Blog" heading="Tulisan & Update" subheading="Catatan, tutorial, dan pemikiran acak yang saya bagikan sesuka hati." %}
{% if active_category %}{% endif %}
Semua Artikel Update {% for c in categories %} {{ c.name }} {{ c.n }} {% endfor %}
{% if posts %}
{% for post in posts %} {% include "blog/partials/post_card.html" with post=post delay=forloop.counter0 %} {% endfor %}
{% include "partials/pagination.html" %} {% else %}

✍️

Belum ada tulisan

{% if query or active_category or active_type %}Coba ubah filter atau kata kunci.{% else %}Postingan yang kamu tulis lewat panel akan muncul di sini.{% endif %}

{% endif %}
{% endblock %}