{% extends host_template %} {% load comments i18n fb_versions cyclope_utils dbgettext_tags %} {% block content %} {% if not user.is_authenticated and not article.published %} {% else %}
{% if article.pretitle %}
{% trans article.pretitle %}
{% endif %}

{% trans article.name %}

{% include 'cyclope/content_tools_block.html' %} {% include "cyclope/author_block.html" %} {% if article.date %} {% trans "Publication date" %}: {{ article.date|date:"j F, Y" }} {% endif %} {% if article.summary %} {% if CYCLOPE_THEME_TYPE == 'bootstrap' %}

{{ article|parsed_gettext:"summary"|smart_style }}

{% elif CYCLOPE_THEME_TYPE == 'classic' %}
{{ article|parsed_gettext:"summary"|smart_style }}
{% endif %} {% endif %} {% if CYCLOPE_THEME_TYPE == 'bootstrap' %} {% if article.pictures|length == 0 and not article.picture %} {% elif article.picture or article.pictures|length == 1 %} {% with article.picture as picture and article.pictures|first as pictures %}
{% if picture %} {{ picture.name }} {% elif pictures %} {{ pictures.name }} {% endif %}
{% endwith %} {% elif article.pictures >= 2 %}
{% endif %} {% elif CYCLOPE_THEME_TYPE == 'classic' %} {% if article.picture or article.pictures %} {% else %} {% endif %} {% endif %}
{{ article|parsed_gettext:"text"|smart_style}}
{% if article.get_last_change_date or article.source %} {% include "cyclope/source_block.html" with source=article.source %} {% if article.get_last_change_date %} {% trans "Last modification date" %}: {{ article.get_last_change_date }} {% endif %} {% endif %}
{% include 'collections/categories_navigation_block.html' %}
{% if CYCLOPE_THEME_TYPE == 'bootstrap' %} {% with author=current_object.get_author_or_user %} {% with author_url=author.get_absolute_url %} {% if author %} {% endif %} {% endwith %} {% endwith %} {% endif %} {% include 'cyclope/related_contents_block.html' %} {% include 'ratings/rating_block.html' %}
{% include 'comments/comments_block.html' %}
{% endif %} {% endblock content%}