{% extends 'public/base.html' %} {% load static %} {% load youtube_filters %} {% block title %}{{ news.title }} - {{ website_settings.site_name|default:'Desa Pulosarok' }}{% endblock %} {% block meta_description %}{{ news.meta_description|default:news.excerpt|default:news.content|truncatechars:160 }}{% endblock %} {% block og_title %}{{ news.title }}{% endblock %} {% block og_description %}{{ news.meta_description|default:news.excerpt|default:news.content|truncatechars:160 }}{% endblock %} {% block og_image %}{% if news.featured_image %}{{ news.featured_image.url }}{% elif website_settings.site_logo %}{{ website_settings.site_logo.url }}{% endif %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{# Metadata dan Badge #}
{{ news.category.name }} {% if news.is_featured %} Berita Utama {% endif %} {% if news.is_breaking %} Breaking News {% endif %}
{{ news.views_count }} views {{ news.comments_count }} komentar {{ news.reading_time }} min baca
{# Judul Berita #}

{{ news.title }}

{# Cuplikan (Excerpt) #} {% if news.excerpt %}
{{ news.excerpt|safe }}
{% endif %} {# Info Penulis dan Tanggal #}

{{ news.author.get_full_name|default:news.author.username }}

Penulis

{{ news.published_date|date:"d F Y" }}

{{ news.published_date|date:"H:i" }} WIB

{# Gambar Unggulan #} {% if news.featured_image %}
{{ news.featured_image_alt|default:news.title }} {% if news.featured_image_alt %}

{{ news.featured_image_alt }}

{% endif %}
{% endif %} {# Embed YouTube #} {% if news.youtube_url %}
{{ news.youtube_url|youtube_embed }}
{% endif %} {# Konten Berita Utama #}
{{ news.content|safe }}
{# Tag #} {% if news.tags.exists %}

Tag

{% for tag in news.tags.all %} #{{ tag.name }} {% endfor %}
{% endif %} {# Tombol Bagikan Mobile/Desktop Bawah #}

Bagikan

{# Sidebar #}
{# Bagian Komentar #} {% if news.allow_comments %}

Komentar ({{ news.comments_count }})

{# Form Komentar #}

Tulis Komentar

{% csrf_token %}
{# Daftar Komentar #}
{% for comment in comments %}
{{ comment.author_name }}

{{ comment.created_at|date:"d M Y, H:i" }}

{{ comment.content }}

{% empty %}

Belum ada komentar. Jadilah yang pertama berkomentar!

{% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}