{% if page %} {% set title = page|os_trans("title") %} {% set description = page|os_trans("description") %} {% endif %} {% set menu = menu ? menu : 'about' %} {% if page.banner %} {% set thumbnail = page.banner.thumbnail %} {% set banner = asset(page.banner.file) %} {% endif %} {% extends 'Default/base.html.twig' %} {% block content %}
{% if page and page|os_trans("content") %} {% set content = page|os_trans("content")|summary %}
{% set hasSidebar = page.picture or page.pictureTitle or page.pictureSubtitle or content.summary|length > 20 %} {% if page.picture or page.pictureTitle or page.pictureSubtitle %}
{% if page.picture %} {{page.pictureTitle ? page.pictureTitle : title}} {% endif %}

{{page.pictureTitle ? page.pictureTitle}}

{{page.pictureSubtitle ? page.pictureSubtitle}}

{% elseif content.summary|length > 20 %}
    {{ content.summary|raw }}
{% endif %}
{{ content.content|raw }}
{% endif %}
{% endblock %}