{% extends 'public/base.html' %} {% load static %} {% load summonote_filters %} {% block title %}{{ tag.name }} - Berita Desa - {{ website_settings.site_name|default:'Desa Pulosarok' }}{% endblock %} {% block meta_description %}Berita dan informasi terkini dengan tag {{ tag.name }} dari Desa Pulosarok. Dapatkan update terbaru tentang {{ tag.name|lower }}.{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{# Header Section #}

#{{ tag.name }}

{{ tag.description|default:"Berita dan informasi terkini dengan tag "|add:tag.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.content|summonote_excerpt_20:news.is_summonote }}
{% for news_tag in news.tags.all %} #{{ news_tag.name }} {% endfor %}
{{ 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 #{{ tag.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.content|summonote_excerpt:news.is_summonote }}
{% for news_tag in news.tags.all %} #{{ news_tag.name }} {% endfor %}
{{ 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 dengan tag #{{ tag.name }}.

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