{% extends "base.html" %} {% load humanize seo_tags %} {% block title %}{{ post.title }}{% endblock %} {% block meta_description %}{{ post.excerpt }}{% endblock %} {% block og_type %}article{% endblock %} {% block og_title %}{{ post.title }}{% endblock %} {% block og_description %}{{ post.excerpt }}{% endblock %} {% block twitter_title %}{{ post.title }}{% endblock %} {% block twitter_description %}{{ post.excerpt }}{% endblock %} {% block og_image %}{% if post.cover %}{% elif default_share_image %}{% endif %}{% endblock %} {% block twitter_image %}{% if post.cover %}{% elif default_share_image %}{% endif %}{% endblock %} {% block structured_data %}{% json_ld schema_article schema_breadcrumb %}{% endblock %} {% block content %}
← Semua tulisan
{% if post.category %} {{ post.category.name }} {% endif %} {% if post.status == 'draft' %} Draft — hanya terlihat olehmu {% endif %}

{{ post.title }}

{{ profile.full_name|slice:":1"|upper }} {{ profile.full_name }} {{ post.published_at|date:"d F Y"|default:"Belum terbit" }} · {{ post.reading_time }} menit baca · {{ post.views_count|intcomma }} dilihat
{% if post.cover %}
{{ post.title }}
{% endif %}
{{ post.content|safe }}
{% if post.tags.all %}
{% for t in post.tags.all %} #{{ t.name }} {% endfor %}
{% endif %}
Bagikan ke WhatsApp Bagikan ke X
{% if post.allow_comments %}

Komentar ({{ comments|length }})

{% for c in comments %}
{{ c.initial }}

{% if c.website %}{{ c.name }}{% else %}{{ c.name }}{% endif %} {{ c.created_at|naturaltime }}

{{ c.body|linebreaksbr }}

{% for r in c.replies.all %} {% if r.is_approved %}
{{ r.initial }}

{{ r.name }} {{ r.created_at|naturaltime }}

{{ r.body|linebreaksbr }}

{% endif %} {% endfor %}
{% empty %}

Belum ada komentar. Jadilah yang pertama!

{% endfor %}

Tinggalkan Komentar

Komentar akan tampil setelah disetujui.

{% csrf_token %}
{{ comment_form.name }}{{ comment_form.name.errors }}
{{ comment_form.email }}{{ comment_form.email.errors }}
{{ comment_form.website }}
{{ comment_form.body }}{{ comment_form.body.errors }}
{% endif %} {% if related %}

Baca Juga

{% for p in related %} {% include "blog/partials/post_card.html" with post=p delay=forloop.counter0 %} {% endfor %}
{% endif %}
{% endblock %}