{% extends 'website/base.html' %} {% load url from future %} {% load breadcrumb_tags thumbnail sanitizer %} {% block meta_description %} {% comment %} {% if post.photo.url %} {% endif %} {% endcomment %} {% endblock %} {% block title %}{{ post.title }}{% endblock %} {% block bodyclass %}post-detail{% endblock %} {% block breadcrumb %} {{ block.super }} {% add_crumb 'Kabar Terbaru' 'website:news:index' %} {% if is_preview %} {% add_crumb 'Blog Detail' %} {% else %} {% add_crumb post.title 'website:news:detail' post.slug %} {% endif %} {% endblock %} {% block content %} {% block sidebar %} {% endblock %}
{{ post.published|date:'M' }}
{{ post.published|date:'d' }}

{{ post.title }}

oleh {{ post.author.profile }} {% if not is_preview %} {% with post.tags.all as tags %} {% if tags %} in {% for tag in tags %} {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %} {% endif %} {% endwith %} {% else %} in exampletag1, exampletag2 {% endif %} {{ comments.count }}
{% if post.photo %}
{% endif %}
{# Wordpress imported posts use newline instead of

so we need to convert those to linebreaks #} {% if post.wp_post_id %} {{ post.content|sanitize|safe|linebreaks }} {% else %} {{ post.content|sanitize|safe }} {% endif %}


{% if related_items %}
Artikel Terkait
{% endif %}
{% include 'website/generic/comments.html' %} {% endblock %} {% block script %} {{ block.super }} {% endblock %}