{% extends "fluent_blogs/base_internal.html" %}
{% load i18n %}
{% comment %}
This is the central template for detail pages.
The layout can be customized easily by overwriting the included templates.
{% endcomment %}
{% block title %}{{ object.title }}{% endblock %}
{% block meta-keywords %}{% if object.tags %}{{ object.tags.all|join:', ' }}{% else %}{{ block.super }}{% endif %}{% endblock %}
{% block meta-description %}{% if object.intro %}{{ object.intro }}{% else %}{{ object.content|striptags|truncatewords:100 }}{% endif %}{% endblock %}
{% block og-description %}{% if object.intro %}{{ object.intro }}{% else %}{{ object.content|striptags|truncatewords:100 }}{% endif %}{% endblock %}
{% block link %}{{ block.super }}{% with next=object.next_entry previous=object.previous_entry %}
{% if object.short_url %}{% endif %}
{% if previous %}{% endif %}
{% if next %}{% endif %}
{% comment %}
{% with object.creation_date|date:"Y" as year %}
{% with object.creation_date|date:"m" as month %}
{% with object.creation_date|date:"d" as day %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endcomment %}
{% include "fluent_blogs/entry_detail/comments_css.html" %}
{% endwith %}{% endblock %}
{% block script %}{% include "fluent_blogs/entry_detail/comments_script.html" %}{% endblock %}
{% block content %}
{% include "fluent_blogs/entry_detail/contents.html" %}
{% include "fluent_blogs/entry_detail/widgets.html" %}
{% include "fluent_blogs/entry_detail/navigation.html" %}
{% include "fluent_blogs/entry_detail/comments.html" %}
{% include "fluent_blogs/entry_detail/page_footer.html" %}
{% endblock %}