{% extends "fluent_blogs/base_internal.html" %} {% load i18n fluent_blogs_tags %} {% 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.meta_keywords %}{{ object.meta_keywords }}{% elif object.tags %}{{ object.tags.all|join:', ' }}{% else %}{{ block.super }}{% endif %}{% endblock %} {% block meta-description %}{% if object.meta_description %}{{ object.meta_description }}{% elif object.intro %}{{ object.intro }}{% else %}{{ object.content|striptags|truncatewords:100 }}{% endif %}{% endblock %} {% block og-description %}{% if object.meta_description %}{{ object.meta_description }}{% elif 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 %} {# only exposed on one BlogPage node #} {% 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 %}