{% extends host_template %} {% load i18n cyclope_utils fb_versions %} {% comment %} When inserted in a layout region the host template used is just a wrapper (see inline_view.html). When showing the StaticPage as the main content of the view, the host_template is the layout template. {% endcomment %} {% block content %} {% if not user.is_authenticated and not staticpage.published %} {% else %}
{# include 'cyclope/content_tools_block.html' #} {% if staticpage.pictures %} {% endif %} {% if staticpage.summary %} {% if CYCLOPE_THEME_TYPE == 'bootstrap' %}

{{ staticpage.summary|smart_style }}

{% elif CYCLOPE_THEME_TYPE == 'classic' %}
{{ staticpage.summary|smart_style}}
{% endif %} {% endif %}
{{ staticpage.text|smart_style }}
{% include 'collections/categories_navigation_block.html' %}
{% include 'cyclope/related_contents_block.html' %}
{% endif %} {% endblock content%}