{% extends "base.html" %} {% block head %} {{ super() }} {% if page.description %} {% endif %} {% import 'translations_meta.html' as translations_meta with context %} {{ translations_meta.translations_for(page) }} {% endblock %} {% block title %} {% if page.titleseo %} {{ page.titleseo }} {% else %} {{ page.title }} {% endif %} {% if page.slug != "home" %} - {{ SITESEO }} {% endif %} {%endblock%} {% block image %} {% if page.img %}
{% endif %} {% endblock %} {% block content %} {% if page.title %}

{{ page.title }}

{% endif %} {{ page.content }} {% if page.subpagespage %}
{% for p in page.subpages|sort(attribute='page_order') %} {% if p.thumb_img %} {% else %} {% if p.img %} {% endif %} {% endif %}

{{ p.title }}

{{ p.summary|striptags }}

{% endfor %}
{% endif %} {% if page.articles %} {% import 'articles_macro.html' as articles_macro with context %} {{ articles_macro.print_articles(page.articles, page.list_short) }}

See all {{ page.category_number }}

{% if page.show_tags %} {% import 'tags_category_macro.html' as tags_category_macro with context %} {{ tags_category_macro.tags_category(page.include_category) }} {% endif %} {% endif %} {% endblock %} {% block end_content %} {% import 'translations.html' as translations with context %} {{ translations.translations_for(page) }} {% endblock %}