{% extends "layout.html" %} {% load i18n %} {% block title %}{% trans "About us" %}{% endblock %} {% block content %}
{% if about_us %}
{% if about_us.lead_title or about_us.lead_content %}

{{about_us.lead_title|safe}}

{{ about_us.lead_content|safe }}

{% endif %} {% if about_us.subsections %} {% for subsection in about_us.subsections %} {% if subsection.subtitle != "

 

" and subsection.subcontent != "

 

" %}

{{ subsection.subtitle|safe }}

{{ subsection.subcontent|safe }}

{% endif %} {% endfor %} {% endif %}
{% else %}
{% endif %}
{% endblock %}