{% extends 'public/base.html' %} {% load static %} {% block title %}{{ category.name }} - Berita Desa - {{ website_settings.site_name|default:'Desa Pulosarok' }}{% endblock %} {% block meta_description %}Berita dan informasi terkini dalam kategori {{ category.name }} dari Desa Pulosarok. Dapatkan update terbaru tentang {{ category.name|lower }}.{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if category.icon %} {% else %} {% endif %}

{{ category.name }}

{{ category.description|default:"Berita dan informasi terkini dalam kategori "|add:category.name }}

{{ news_list.count }} artikel {{ total_views }} views

Filter Berita

{% if featured_news %}

Berita Utama

{% for news in featured_news %}
{% if news.featured_image %} {{ news.title }} {% else %}
{% endif %}
{{ news.category.name }}
{% if news.is_featured %} {% endif %}

{{ news.title }}

{{ news.excerpt|default:news.content|truncatewords:20 }}

{{ news.author.get_full_name|default:news.author.username }} {{ news.published_date|date:"d M Y" }}
{{ news.views_count }} {{ news.comments_count }}
{% endfor %}
{% endif %}

Semua Berita {{ category.name }}

Total: {{ news_list.count }}
{% for news in news_list %}
{% if news.featured_image %} {{ news.title }} {% else %}
{% endif %}
{{ news.category.name }}
{% if news.is_featured %} {% endif %} {% if news.is_breaking %} {% endif %}

{{ news.title }}

{{ news.excerpt|default:news.content|truncatewords:15 }}

{{ news.author.get_full_name|default:news.author.username }} {{ news.published_date|date:"d M" }}
{{ news.views_count }} {{ news.comments_count }}
{% empty %}

Belum Ada Berita

Belum ada berita dalam kategori {{ category.name }}.

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